pub enum RemoteType {
WebDAV,
NFS,
SMB,
AFS,
Other(String),
Unknown,
}Expand description
The underlying remote filesystem type, if applicable.
This value is meaningful only when the path is classified as remote.
Variants§
Trait Implementations§
Source§impl Debug for RemoteType
impl Debug for RemoteType
Source§impl PartialEq for RemoteType
impl PartialEq for RemoteType
impl StructuralPartialEq for RemoteType
Auto Trait Implementations§
impl Freeze for RemoteType
impl RefUnwindSafe for RemoteType
impl Send for RemoteType
impl Sync for RemoteType
impl Unpin for RemoteType
impl UnsafeUnpin for RemoteType
impl UnwindSafe for RemoteType
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