pub struct ParserPackSourceAsset {
pub release_tag: String,
pub release_revision: SourceRevision,
pub name: String,
pub sha256: Sha256Digest,
pub bytes: u64,
pub parsers_manifest_sha256: Sha256Digest,
}Expand description
Exact pinned upstream native asset consumed by one platform realization.
Fields§
§release_tag: StringExact release tag that owns the asset.
release_revision: SourceRevisionExact release revision that owns the asset.
name: StringSafe release-asset basename.
sha256: Sha256DigestSHA-256 of the complete downloaded asset.
bytes: u64Exact compressed asset bytes.
parsers_manifest_sha256: Sha256DigestSHA-256 of the upstream asset-inventory manifest.
Trait Implementations§
Source§impl Clone for ParserPackSourceAsset
impl Clone for ParserPackSourceAsset
Source§fn clone(&self) -> ParserPackSourceAsset
fn clone(&self) -> ParserPackSourceAsset
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 ParserPackSourceAsset
impl Debug for ParserPackSourceAsset
Source§impl<'de> Deserialize<'de> for ParserPackSourceAsset
impl<'de> Deserialize<'de> for ParserPackSourceAsset
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 ParserPackSourceAsset
impl PartialEq for ParserPackSourceAsset
Source§impl Serialize for ParserPackSourceAsset
impl Serialize for ParserPackSourceAsset
impl Eq for ParserPackSourceAsset
impl StructuralPartialEq for ParserPackSourceAsset
Auto Trait Implementations§
impl Freeze for ParserPackSourceAsset
impl RefUnwindSafe for ParserPackSourceAsset
impl Send for ParserPackSourceAsset
impl Sync for ParserPackSourceAsset
impl Unpin for ParserPackSourceAsset
impl UnwindSafe for ParserPackSourceAsset
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.