pub enum ItemStatic {
FileSystem(&'static dyn FileSystemOperations),
File(&'static dyn FileSystemOperations),
Directory(&'static dyn FileSystemOperations),
BlockDevice(&'static dyn BlockDevice),
CharacterDevice(&'static dyn CharacterDevice),
Pipe(&'static Pipe),
}Variants§
FileSystem(&'static dyn FileSystemOperations)
File(&'static dyn FileSystemOperations)
Directory(&'static dyn FileSystemOperations)
BlockDevice(&'static dyn BlockDevice)
CharacterDevice(&'static dyn CharacterDevice)
Pipe(&'static Pipe)
Trait Implementations§
Source§impl Clone for ItemStatic
impl Clone for ItemStatic
Source§fn clone(&self) -> ItemStatic
fn clone(&self) -> ItemStatic
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ItemStatic
impl !RefUnwindSafe for ItemStatic
impl Send for ItemStatic
impl Sync for ItemStatic
impl Unpin for ItemStatic
impl !UnwindSafe for ItemStatic
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