pub struct ArtifactHash {
pub algo: String,
pub hash: String,
}Expand description
Hash for artifact integrity.
Fields§
§algo: String§hash: StringTrait Implementations§
Source§impl Clone for ArtifactHash
impl Clone for ArtifactHash
Source§fn clone(&self) -> ArtifactHash
fn clone(&self) -> ArtifactHash
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 ArtifactHash
impl Debug for ArtifactHash
Source§impl<'de> Deserialize<'de> for ArtifactHash
impl<'de> Deserialize<'de> for ArtifactHash
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
Auto Trait Implementations§
impl Freeze for ArtifactHash
impl RefUnwindSafe for ArtifactHash
impl Send for ArtifactHash
impl Sync for ArtifactHash
impl Unpin for ArtifactHash
impl UnsafeUnpin for ArtifactHash
impl UnwindSafe for ArtifactHash
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