pub struct ContainerRecreateFingerprint {
pub container: String,
pub name: String,
pub image: String,
pub state: ContainerState,
pub sha256: String,
}Expand description
Stable digest and selected identity captured before a container replacement.
Fields§
§container: StringOriginal container identifier.
name: StringContainer name without Docker’s leading slash.
image: StringConfigured image reference.
state: ContainerStateCurrent runtime state.
sha256: StringSHA-256 of replacement-relevant Docker configuration.
Implementations§
Trait Implementations§
Source§impl Clone for ContainerRecreateFingerprint
impl Clone for ContainerRecreateFingerprint
Source§fn clone(&self) -> ContainerRecreateFingerprint
fn clone(&self) -> ContainerRecreateFingerprint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContainerRecreateFingerprint
impl Debug for ContainerRecreateFingerprint
Source§impl<'de> Deserialize<'de> for ContainerRecreateFingerprint
impl<'de> Deserialize<'de> for ContainerRecreateFingerprint
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 ContainerRecreateFingerprint
impl PartialEq for ContainerRecreateFingerprint
Source§fn eq(&self, other: &ContainerRecreateFingerprint) -> bool
fn eq(&self, other: &ContainerRecreateFingerprint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ContainerRecreateFingerprint
impl StructuralPartialEq for ContainerRecreateFingerprint
Auto Trait Implementations§
impl Freeze for ContainerRecreateFingerprint
impl RefUnwindSafe for ContainerRecreateFingerprint
impl Send for ContainerRecreateFingerprint
impl Sync for ContainerRecreateFingerprint
impl Unpin for ContainerRecreateFingerprint
impl UnsafeUnpin for ContainerRecreateFingerprint
impl UnwindSafe for ContainerRecreateFingerprint
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.