pub struct ManifestFile {
pub path: String,
pub sha256: String,
pub size_bytes: u64,
pub canonical: bool,
pub action: String,
}Fields§
§path: String§sha256: String§size_bytes: u64§canonical: bool§action: StringImplementations§
Trait Implementations§
Source§impl Clone for ManifestFile
impl Clone for ManifestFile
Source§fn clone(&self) -> ManifestFile
fn clone(&self) -> ManifestFile
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 ManifestFile
impl Debug for ManifestFile
Source§impl<'de> Deserialize<'de> for ManifestFile
impl<'de> Deserialize<'de> for ManifestFile
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 ManifestFile
impl RefUnwindSafe for ManifestFile
impl Send for ManifestFile
impl Sync for ManifestFile
impl Unpin for ManifestFile
impl UnsafeUnpin for ManifestFile
impl UnwindSafe for ManifestFile
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