pub struct FileEntry {
pub key: Option<bool>,
pub location: Option<Text>,
pub fs_name: Text,
pub root: Text,
pub size: Option<u128>,
pub file_version: Option<Text>,
pub hash: Option<HashEntry>,
}
Fields§
§key: Option<bool>
§location: Option<Text>
§fs_name: Text
§root: Text
§size: Option<u128>
§file_version: Option<Text>
§hash: Option<HashEntry>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FileEntry
impl<'de> Deserialize<'de> for FileEntry
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 FileEntry
impl RefUnwindSafe for FileEntry
impl Send for FileEntry
impl Sync for FileEntry
impl Unpin for FileEntry
impl UnwindSafe for FileEntry
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