pub struct DirectoryEntry<'a> {
pub header: &'a DirectoryEntryHeader,
pub name: &'a [u8],
}Expand description
A single directory entry with header and name
Fields§
§header: &'a DirectoryEntryHeaderDirectory entry header
name: &'a [u8]Entry name
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DirectoryEntry<'a>
impl<'a> RefUnwindSafe for DirectoryEntry<'a>
impl<'a> Send for DirectoryEntry<'a>
impl<'a> Sync for DirectoryEntry<'a>
impl<'a> Unpin for DirectoryEntry<'a>
impl<'a> UnwindSafe for DirectoryEntry<'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