pub struct SyncDirEntry {
pub name: String,
pub mode: u32,
pub size: u32,
pub mtime: u32,
}Expand description
Directory entry from the sync LIST command.
Fields§
§name: String§mode: u32§size: u32§mtime: u32Implementations§
Trait Implementations§
Source§impl Clone for SyncDirEntry
impl Clone for SyncDirEntry
Source§fn clone(&self) -> SyncDirEntry
fn clone(&self) -> SyncDirEntry
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 moreAuto Trait Implementations§
impl Freeze for SyncDirEntry
impl RefUnwindSafe for SyncDirEntry
impl Send for SyncDirEntry
impl Sync for SyncDirEntry
impl Unpin for SyncDirEntry
impl UnsafeUnpin for SyncDirEntry
impl UnwindSafe for SyncDirEntry
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