pub struct PayloadDigest {
pub format: &'static str,
pub sha256: String,
}Expand description
What a release carries to commit to its extracted tree.
Fields§
§format: &'static strAlways PAYLOAD_DIGEST_FORMAT.
sha256: StringSHA-256 of the canonical stream.
Trait Implementations§
Source§impl Clone for PayloadDigest
impl Clone for PayloadDigest
Source§fn clone(&self) -> PayloadDigest
fn clone(&self) -> PayloadDigest
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 PayloadDigest
impl Debug for PayloadDigest
impl Eq for PayloadDigest
Source§impl PartialEq for PayloadDigest
impl PartialEq for PayloadDigest
impl StructuralPartialEq for PayloadDigest
Auto Trait Implementations§
impl Freeze for PayloadDigest
impl RefUnwindSafe for PayloadDigest
impl Send for PayloadDigest
impl Sync for PayloadDigest
impl Unpin for PayloadDigest
impl UnsafeUnpin for PayloadDigest
impl UnwindSafe for PayloadDigest
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.