pub struct InteriorIndexCell<'a> {
pub left_child_page_no: u32,
pub payload_size: u64,
pub payload: IndexCellPayload<'a>,
pub overflow_page_no: Option<u32>,
}
Fields§
§left_child_page_no: u32
§payload_size: u64
§payload: IndexCellPayload<'a>
§overflow_page_no: Option<u32>
Auto Trait Implementations§
impl<'a> Freeze for InteriorIndexCell<'a>
impl<'a> RefUnwindSafe for InteriorIndexCell<'a>
impl<'a> Send for InteriorIndexCell<'a>
impl<'a> Sync for InteriorIndexCell<'a>
impl<'a> Unpin for InteriorIndexCell<'a>
impl<'a> UnwindSafe for InteriorIndexCell<'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