pub enum EntryData<'a> {
Immediate(u32),
CsrOffset(usize),
Leaf(&'a [u8]),
Directory(Vec<Entry<'a>>),
}Expand description
The enumeration to express type of directory entry and its content.
Variants§
Trait Implementations§
impl<'a> Eq for EntryData<'a>
impl<'a> StructuralPartialEq for EntryData<'a>
Auto Trait Implementations§
impl<'a> Freeze for EntryData<'a>
impl<'a> RefUnwindSafe for EntryData<'a>
impl<'a> Send for EntryData<'a>
impl<'a> Sync for EntryData<'a>
impl<'a> Unpin for EntryData<'a>
impl<'a> UnwindSafe for EntryData<'a>
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