[−][src]Struct webdav_handler::memfs::MemFs
Methods
impl MemFs[src]
Trait Implementations
impl DavFileSystem for MemFs[src]
fn metadata<'a>(&'a self, path: &'a WebPath) -> FsFuture<Box<dyn DavMetaData>>[src]
fn read_dir<'a>(
&'a self,
path: &'a WebPath,
_meta: ReadDirMeta
) -> FsFuture<Pin<Box<dyn Stream<Item = Box<dyn DavDirEntry>> + Send>>>[src]
&'a self,
path: &'a WebPath,
_meta: ReadDirMeta
) -> FsFuture<Pin<Box<dyn Stream<Item = Box<dyn DavDirEntry>> + Send>>>
fn open<'a>(
&'a self,
path: &'a WebPath,
options: OpenOptions
) -> FsFuture<Box<dyn DavFile>>[src]
&'a self,
path: &'a WebPath,
options: OpenOptions
) -> FsFuture<Box<dyn DavFile>>
fn create_dir<'a>(&'a self, path: &'a WebPath) -> FsFuture<()>[src]
fn remove_file<'a>(&'a self, path: &'a WebPath) -> FsFuture<()>[src]
fn remove_dir<'a>(&'a self, path: &'a WebPath) -> FsFuture<()>[src]
fn rename<'a>(&'a self, from: &'a WebPath, to: &'a WebPath) -> FsFuture<()>[src]
fn copy<'a>(&'a self, from: &'a WebPath, to: &'a WebPath) -> FsFuture<()>[src]
fn have_props<'a>(
&'a self,
_path: &'a WebPath
) -> Pin<Box<dyn Future<Output = bool> + Send + 'a>>[src]
&'a self,
_path: &'a WebPath
) -> Pin<Box<dyn Future<Output = bool> + Send + 'a>>
fn patch_props<'a>(
&'a self,
path: &'a WebPath,
set: Vec<DavProp>,
remove: Vec<DavProp>
) -> FsFuture<Vec<(StatusCode, DavProp)>>[src]
&'a self,
path: &'a WebPath,
set: Vec<DavProp>,
remove: Vec<DavProp>
) -> FsFuture<Vec<(StatusCode, DavProp)>>
fn get_props<'a>(
&'a self,
path: &'a WebPath,
do_content: bool
) -> FsFuture<Vec<DavProp>>[src]
&'a self,
path: &'a WebPath,
do_content: bool
) -> FsFuture<Vec<DavProp>>
fn get_prop<'a>(&'a self, path: &'a WebPath, prop: DavProp) -> FsFuture<Vec<u8>>[src]
fn symlink_metadata<'a>(
&'a self,
path: &'a WebPath
) -> FsFuture<Box<dyn DavMetaData>>[src]
&'a self,
path: &'a WebPath
) -> FsFuture<Box<dyn DavMetaData>>
Return the metadata of a file, directory or symbolic link. Read more
fn get_quota<'a>(&'a self) -> FsFuture<(u64, Option<u64>)>[src]
Get quota of this filesystem (used/total space). Read more
impl Clone for MemFs[src]
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for MemFs[src]
Auto Trait Implementations
Blanket Implementations
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Same<T> for T
type Output = T
Should always be Self