pub(crate) enum RamNode {
File {
data: Vec<u8>,
mode: u32,
},
Directory {
entries: BTreeMap<String, u64>,
mode: u32,
},
}Expand description
Internal node type for RamFS
Variants§
Auto Trait Implementations§
impl Freeze for RamNode
impl RefUnwindSafe for RamNode
impl Send for RamNode
impl Sync for RamNode
impl Unpin for RamNode
impl UnsafeUnpin for RamNode
impl UnwindSafe for RamNode
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