pub struct Entry { /* private fields */ }
Implementations§
Source§impl Entry
impl Entry
pub fn new(key: i32, left: &BTreePageID, right: &BTreePageID) -> Self
pub fn set_record_id(&mut self, record_id: usize)
pub fn get_record_id(&self) -> usize
pub fn get_key(&self) -> i32
pub fn get_left_child(&self) -> BTreePageID
pub fn get_right_child(&self) -> BTreePageID
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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