pub enum MountResource {
Table,
Dir,
}Expand description
Mounted target shape. Table mounts are leaves; Dir mounts can be traversed.
Variants§
Trait Implementations§
Source§impl Clone for MountResource
impl Clone for MountResource
Source§fn clone(&self) -> MountResource
fn clone(&self) -> MountResource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MountResource
Source§impl Debug for MountResource
impl Debug for MountResource
impl Eq for MountResource
Source§impl Hash for MountResource
impl Hash for MountResource
Source§impl Ord for MountResource
impl Ord for MountResource
Source§fn cmp(&self, other: &MountResource) -> Ordering
fn cmp(&self, other: &MountResource) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MountResource
impl PartialEq for MountResource
Source§impl PartialOrd for MountResource
impl PartialOrd for MountResource
impl StructuralPartialEq for MountResource
Auto Trait Implementations§
impl Freeze for MountResource
impl RefUnwindSafe for MountResource
impl Send for MountResource
impl Sync for MountResource
impl Unpin for MountResource
impl UnsafeUnpin for MountResource
impl UnwindSafe for MountResource
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