[−][src]Struct webdav_handler::memfs::MemFs
Ephemeral in-memory filesystem.
Methods
impl MemFs[src]
Trait Implementations
impl Clone for MemFs[src]
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl DavFileSystem for MemFs[src]
fn metadata<'a>(&'a self, path: &'a DavPath) -> FsFuture<Box<dyn DavMetaData>>[src]
fn read_dir<'a>(
&'a self,
path: &'a DavPath,
_meta: ReadDirMeta
) -> FsFuture<FsStream<Box<dyn DavDirEntry>>>[src]
&'a self,
path: &'a DavPath,
_meta: ReadDirMeta
) -> FsFuture<FsStream<Box<dyn DavDirEntry>>>
fn open<'a>(
&'a self,
path: &'a DavPath,
options: OpenOptions
) -> FsFuture<Box<dyn DavFile>>[src]
&'a self,
path: &'a DavPath,
options: OpenOptions
) -> FsFuture<Box<dyn DavFile>>
fn create_dir<'a>(&'a self, path: &'a DavPath) -> FsFuture<()>[src]
fn remove_file<'a>(&'a self, path: &'a DavPath) -> FsFuture<()>[src]
fn remove_dir<'a>(&'a self, path: &'a DavPath) -> FsFuture<()>[src]
fn rename<'a>(&'a self, from: &'a DavPath, to: &'a DavPath) -> FsFuture<()>[src]
fn copy<'a>(&'a self, from: &'a DavPath, to: &'a DavPath) -> FsFuture<()>[src]
fn have_props<'a>(&'a self, _path: &'a DavPath) -> BoxFuture<'a, bool>[src]
fn patch_props<'a>(
&'a self,
path: &'a DavPath,
patch: Vec<(bool, DavProp)>
) -> FsFuture<Vec<(StatusCode, DavProp)>>[src]
&'a self,
path: &'a DavPath,
patch: Vec<(bool, DavProp)>
) -> FsFuture<Vec<(StatusCode, DavProp)>>
fn get_props<'a>(
&'a self,
path: &'a DavPath,
do_content: bool
) -> FsFuture<Vec<DavProp>>[src]
&'a self,
path: &'a DavPath,
do_content: bool
) -> FsFuture<Vec<DavProp>>
fn get_prop<'a>(&'a self, path: &'a DavPath, prop: DavProp) -> FsFuture<Vec<u8>>[src]
fn symlink_metadata<'a>(
&'a self,
path: &'a DavPath
) -> FsFuture<Box<dyn DavMetaData>>[src]
&'a self,
path: &'a DavPath
) -> FsFuture<Box<dyn DavMetaData>>
fn get_quota<'a>(&'a self) -> FsFuture<(u64, Option<u64>)>[src]
impl Debug for MemFs[src]
Auto Trait Implementations
impl RefUnwindSafe for MemFs
impl Send for MemFs
impl Sync for MemFs
impl Unpin for MemFs
impl UnwindSafe for MemFs
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
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> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
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<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,