pub enum MountType {
Local,
SSH,
S3,
WebDAV,
Custom(String),
}Expand description
Types of mounts supported by RFS
Variants§
Local
Local filesystem
SSH
SSH remote filesystem
S3
S3 object storage
WebDAV
WebDAV remote filesystem
Custom(String)
Custom mount type
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MountType
impl RefUnwindSafe for MountType
impl Send for MountType
impl Sync for MountType
impl Unpin for MountType
impl UnsafeUnpin for MountType
impl UnwindSafe for MountType
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