Struct bollard::image::PushImageOptions
source · pub struct PushImageOptions<T>{
pub tag: T,
}
Expand description
Parameters to the Push Image API
§Examples
use bollard::image::PushImageOptions;
PushImageOptions {
tag: "v1.0.1",
};
PushImageOptions::<String> {
..Default::default()
};
Fields§
§tag: T
The tag to associate with the image on the registry.
Trait Implementations§
source§impl<T> Clone for PushImageOptions<T>
impl<T> Clone for PushImageOptions<T>
source§fn clone(&self) -> PushImageOptions<T>
fn clone(&self) -> PushImageOptions<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T> Debug for PushImageOptions<T>
impl<T> Debug for PushImageOptions<T>
source§impl<T> Default for PushImageOptions<T>
impl<T> Default for PushImageOptions<T>
source§fn default() -> PushImageOptions<T>
fn default() -> PushImageOptions<T>
Returns the “default value” for a type. Read more
source§impl<T> PartialEq for PushImageOptions<T>
impl<T> PartialEq for PushImageOptions<T>
source§impl<T> Serialize for PushImageOptions<T>
impl<T> Serialize for PushImageOptions<T>
impl<T> StructuralPartialEq for PushImageOptions<T>
Auto Trait Implementations§
impl<T> Freeze for PushImageOptions<T>where
T: Freeze,
impl<T> RefUnwindSafe for PushImageOptions<T>where
T: RefUnwindSafe,
impl<T> Send for PushImageOptions<T>where
T: Send,
impl<T> Sync for PushImageOptions<T>where
T: Sync,
impl<T> Unpin for PushImageOptions<T>where
T: Unpin,
impl<T> UnwindSafe for PushImageOptions<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)