pub struct ArtifactInputDigest {
pub schema_version: u32,
pub digest: String,
}Expand description
Digest of the manifest inputs that produced an ArtifactId.
Fields§
§schema_version: u32Manifest key schema version used to compute the digest.
digest: StringHex-encoded digest over the canonical artifact manifest inputs.
Trait Implementations§
Source§impl Clone for ArtifactInputDigest
impl Clone for ArtifactInputDigest
Source§fn clone(&self) -> ArtifactInputDigest
fn clone(&self) -> ArtifactInputDigest
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 ArtifactInputDigest
impl Debug for ArtifactInputDigest
Source§impl<'de> Deserialize<'de> for ArtifactInputDigest
impl<'de> Deserialize<'de> for ArtifactInputDigest
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
impl Eq for ArtifactInputDigest
Source§impl PartialEq for ArtifactInputDigest
impl PartialEq for ArtifactInputDigest
Source§fn eq(&self, other: &ArtifactInputDigest) -> bool
fn eq(&self, other: &ArtifactInputDigest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ArtifactInputDigest
impl Serialize for ArtifactInputDigest
impl StructuralPartialEq for ArtifactInputDigest
Auto Trait Implementations§
impl Freeze for ArtifactInputDigest
impl RefUnwindSafe for ArtifactInputDigest
impl Send for ArtifactInputDigest
impl Sync for ArtifactInputDigest
impl Unpin for ArtifactInputDigest
impl UnsafeUnpin for ArtifactInputDigest
impl UnwindSafe for ArtifactInputDigest
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