pub struct Btree {
pub header: BtreeHeader,
pub cells: Vec<Cell>,
}
Fields§
§header: BtreeHeader
§cells: Vec<Cell>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Btree
impl RefUnwindSafe for Btree
impl Send for Btree
impl Sync for Btree
impl Unpin for Btree
impl UnwindSafe for Btree
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