pub struct ImageRemovalFingerprint {
pub reference: String,
pub identity: ImageIdentity,
pub sha256: String,
}Expand description
Stable identity bound into an image-removal plan.
Fields§
§reference: StringRequested reference.
identity: ImageIdentityResolved local image identity.
sha256: StringLowercase SHA-256 over the complete identity.
Implementations§
Source§impl ImageRemovalFingerprint
impl ImageRemovalFingerprint
Sourcepub fn new(
reference: impl Into<String>,
identity: ImageIdentity,
) -> InfraResult<Self>
pub fn new( reference: impl Into<String>, identity: ImageIdentity, ) -> InfraResult<Self>
Builds a deterministic fingerprint.
Trait Implementations§
Source§impl Clone for ImageRemovalFingerprint
impl Clone for ImageRemovalFingerprint
Source§fn clone(&self) -> ImageRemovalFingerprint
fn clone(&self) -> ImageRemovalFingerprint
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 ImageRemovalFingerprint
impl Debug for ImageRemovalFingerprint
Source§impl<'de> Deserialize<'de> for ImageRemovalFingerprint
impl<'de> Deserialize<'de> for ImageRemovalFingerprint
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 ImageRemovalFingerprint
impl PartialEq for ImageRemovalFingerprint
Source§fn eq(&self, other: &ImageRemovalFingerprint) -> bool
fn eq(&self, other: &ImageRemovalFingerprint) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ImageRemovalFingerprint
impl Serialize for ImageRemovalFingerprint
impl Eq for ImageRemovalFingerprint
impl StructuralPartialEq for ImageRemovalFingerprint
Auto Trait Implementations§
impl Freeze for ImageRemovalFingerprint
impl RefUnwindSafe for ImageRemovalFingerprint
impl Send for ImageRemovalFingerprint
impl Sync for ImageRemovalFingerprint
impl Unpin for ImageRemovalFingerprint
impl UnsafeUnpin for ImageRemovalFingerprint
impl UnwindSafe for ImageRemovalFingerprint
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.