pub struct SpaceFileEntry {
pub path: String,
pub is_dir: bool,
pub size_bytes: Option<u64>,
}Fields§
§path: String§is_dir: bool§size_bytes: Option<u64>Trait Implementations§
Source§impl Clone for SpaceFileEntry
impl Clone for SpaceFileEntry
Source§fn clone(&self) -> SpaceFileEntry
fn clone(&self) -> SpaceFileEntry
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 SpaceFileEntry
impl Debug for SpaceFileEntry
Source§impl<'de> Deserialize<'de> for SpaceFileEntry
impl<'de> Deserialize<'de> for SpaceFileEntry
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
impl Eq for SpaceFileEntry
Source§impl From<ProviderFileEntry> for SpaceFileEntry
impl From<ProviderFileEntry> for SpaceFileEntry
Source§fn from(entry: ProviderFileEntry) -> Self
fn from(entry: ProviderFileEntry) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SpaceFileEntry
impl PartialEq for SpaceFileEntry
Source§impl Serialize for SpaceFileEntry
impl Serialize for SpaceFileEntry
impl StructuralPartialEq for SpaceFileEntry
Auto Trait Implementations§
impl Freeze for SpaceFileEntry
impl RefUnwindSafe for SpaceFileEntry
impl Send for SpaceFileEntry
impl Sync for SpaceFileEntry
impl Unpin for SpaceFileEntry
impl UnsafeUnpin for SpaceFileEntry
impl UnwindSafe for SpaceFileEntry
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