Struct dav_server::localfs::LocalFs [−][src]
pub struct LocalFs { /* fields omitted */ }Expand description
Local Filesystem implementation.
Implementations
Create a new LocalFs DavFileSystem, serving “base”.
If “public” is set to true, all files and directories created will be publically readable (mode 644/755), otherwise they will be private (mode 600/700). Umask stil overrides this.
If “case_insensitive” is set to true, all filesystem lookups will be case insensitive. Note that this has a lot of overhead!
Trait Implementations
Return the metadata of a file or directory.
Return the metadata of a file, directory or symbolic link. Read more
fn read_dir<'a>(
&'a self,
davpath: &'a DavPath,
meta: ReadDirMeta
) -> FsFuture<'_, FsStream<Box<dyn DavDirEntry>>>
fn read_dir<'a>(
&'a self,
davpath: &'a DavPath,
meta: ReadDirMeta
) -> FsFuture<'_, FsStream<Box<dyn DavDirEntry>>>
Perform read_dir.
Open a file.
Create a directory. Read more
Remove a directory. Read more
Rename a file or directory. Read more
Copy a file Read more
Indicator that tells if this filesystem driver supports DAV properties. Read more
Patch the DAV properties of a node (add/remove props) Read more
List/get the DAV properties of a node. Read more
Get one specific named property of a node. Read more
Auto Trait Implementations
impl !RefUnwindSafe for LocalFs
impl !UnwindSafe for LocalFs
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
