pub struct SeedManifestEntry {
pub file: String,
pub sha256: String,
}Expand description
A single file entry in the seed manifest.
Fields§
§file: StringFile name (e.g. "providers.json").
sha256: StringSHA-256 hex digest of the file contents.
Trait Implementations§
Source§impl Clone for SeedManifestEntry
impl Clone for SeedManifestEntry
Source§fn clone(&self) -> SeedManifestEntry
fn clone(&self) -> SeedManifestEntry
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 SeedManifestEntry
impl Debug for SeedManifestEntry
Source§impl<'de> Deserialize<'de> for SeedManifestEntry
impl<'de> Deserialize<'de> for SeedManifestEntry
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 SeedManifestEntry
impl RefUnwindSafe for SeedManifestEntry
impl Send for SeedManifestEntry
impl Sync for SeedManifestEntry
impl Unpin for SeedManifestEntry
impl UnsafeUnpin for SeedManifestEntry
impl UnwindSafe for SeedManifestEntry
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