pub enum KernNodeContent {
Dir(RwLock<BTreeMap<String, Arc<KernInode>>>),
File {
read: Option<ReadCallback>,
write: Option<WriteCallback>,
size: u64,
},
Device {
device: Arc<Device>,
},
}Variants§
Auto Trait Implementations§
impl !Freeze for KernNodeContent
impl !RefUnwindSafe for KernNodeContent
impl Send for KernNodeContent
impl Sync for KernNodeContent
impl Unpin for KernNodeContent
impl !UnwindSafe for KernNodeContent
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