pub struct FileEntry {
pub relative_path: String,
pub is_dir: bool,
pub size: u64,
pub permissions: String,
pub modified: Option<String>,
pub created: Option<String>,
}
Fields§
§relative_path: String
§is_dir: bool
§size: u64
§permissions: String
§modified: Option<String>
§created: Option<String>
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
Source§impl FromBytesOwned for FileEntrywhere
Json<Self>: FromBytesOwned,
impl FromBytesOwned for FileEntrywhere
Json<Self>: FromBytesOwned,
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