Struct floppy_disk::mem::MemMetadata
source · pub struct MemMetadata { /* private fields */ }Trait Implementations§
source§impl Debug for MemMetadata
impl Debug for MemMetadata
source§impl FloppyMetadata for MemMetadata
impl FloppyMetadata for MemMetadata
type FileType = MemFileType
type Permissions = MemPermissions
fn file_type<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Self::FileType> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn is_dir<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn is_file<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn is_symlink<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn len<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = u64> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn permissions<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Self::Permissions> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn modified<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<SystemTime>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn accessed<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<SystemTime>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn created<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<SystemTime>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
Auto Trait Implementations§
impl RefUnwindSafe for MemMetadata
impl Send for MemMetadata
impl Sync for MemMetadata
impl Unpin for MemMetadata
impl UnwindSafe for MemMetadata
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