pub enum FsDevice {
Label(String),
Uuid(String),
UuidWithType(String, String),
Path(String),
}Variants§
Label(String)
(file-system-label "x")
Uuid(String)
(uuid "x")
UuidWithType(String, String)
(uuid "x" 'tag), e.g. (uuid "ABCD-1234" 'fat32)
Path(String)
"x"
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FsDevice
impl RefUnwindSafe for FsDevice
impl Send for FsDevice
impl Sync for FsDevice
impl Unpin for FsDevice
impl UnsafeUnpin for FsDevice
impl UnwindSafe for FsDevice
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