pub struct ProviderFileEntry {
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 ProviderFileEntry
impl Clone for ProviderFileEntry
Source§fn clone(&self) -> ProviderFileEntry
fn clone(&self) -> ProviderFileEntry
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 ProviderFileEntry
impl Debug for ProviderFileEntry
Source§impl<'de> Deserialize<'de> for ProviderFileEntry
impl<'de> Deserialize<'de> for ProviderFileEntry
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 ProviderFileEntry
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 ProviderFileEntry
impl PartialEq for ProviderFileEntry
Source§impl Serialize for ProviderFileEntry
impl Serialize for ProviderFileEntry
impl StructuralPartialEq for ProviderFileEntry
Auto Trait Implementations§
impl Freeze for ProviderFileEntry
impl RefUnwindSafe for ProviderFileEntry
impl Send for ProviderFileEntry
impl Sync for ProviderFileEntry
impl Unpin for ProviderFileEntry
impl UnsafeUnpin for ProviderFileEntry
impl UnwindSafe for ProviderFileEntry
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