pub struct EntryLocation {
pub block: u16,
pub idx: usize,
}
Expand description
Convenience for locating an entry in a directory.
idx
mirrors the internal indexing, which starts at 2 in a key block, and 1 in an entry block
Fields§
§block: u16
§idx: usize
Auto Trait Implementations§
impl Freeze for EntryLocation
impl RefUnwindSafe for EntryLocation
impl Send for EntryLocation
impl Sync for EntryLocation
impl Unpin for EntryLocation
impl UnwindSafe for EntryLocation
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