pub struct TagImageHook {
pub container_name: String,
pub to: ObjectReference,
}
Expand description
TagImageHook is a request to tag the image in a particular container onto an ImageStreamTag.
Fields§
§container_name: String
ContainerName is the name of a container in the deployment config whose image value will be used as the source of the tag. If there is only a single container this value will be defaulted to the name of that container.
to: ObjectReference
To is the target ImageStreamTag to set the container’s image onto.
Trait Implementations§
Source§impl Clone for TagImageHook
impl Clone for TagImageHook
Source§fn clone(&self) -> TagImageHook
fn clone(&self) -> TagImageHook
Returns a duplicate 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 Debug for TagImageHook
impl Debug for TagImageHook
Source§impl Default for TagImageHook
impl Default for TagImageHook
Source§fn default() -> TagImageHook
fn default() -> TagImageHook
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TagImageHook
impl<'de> Deserialize<'de> for TagImageHook
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TagImageHook
impl PartialEq for TagImageHook
Source§impl Serialize for TagImageHook
impl Serialize for TagImageHook
impl StructuralPartialEq for TagImageHook
Auto Trait Implementations§
impl Freeze for TagImageHook
impl RefUnwindSafe for TagImageHook
impl Send for TagImageHook
impl Sync for TagImageHook
impl Unpin for TagImageHook
impl UnwindSafe for TagImageHook
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