pub struct StoreEntryMeta {
pub tool: String,
pub version: String,
pub platform: String,
pub size: u64,
pub sha256: String,
}Expand description
Metadata catalogued for a materialized store entry (docs/23).
Fields§
§tool: String§version: String§platform: String§size: u64§sha256: StringTrait Implementations§
Source§impl Clone for StoreEntryMeta
impl Clone for StoreEntryMeta
Source§fn clone(&self) -> StoreEntryMeta
fn clone(&self) -> StoreEntryMeta
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 StoreEntryMeta
impl Debug for StoreEntryMeta
Source§impl<'de> Deserialize<'de> for StoreEntryMeta
impl<'de> Deserialize<'de> for StoreEntryMeta
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 StoreEntryMeta
impl PartialEq for StoreEntryMeta
Source§fn eq(&self, other: &StoreEntryMeta) -> bool
fn eq(&self, other: &StoreEntryMeta) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StoreEntryMeta
impl Serialize for StoreEntryMeta
impl StructuralPartialEq for StoreEntryMeta
Auto Trait Implementations§
impl Freeze for StoreEntryMeta
impl RefUnwindSafe for StoreEntryMeta
impl Send for StoreEntryMeta
impl Sync for StoreEntryMeta
impl Unpin for StoreEntryMeta
impl UnsafeUnpin for StoreEntryMeta
impl UnwindSafe for StoreEntryMeta
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