#[repr(u8)]pub enum BTreePageType {
InteriorIndex = 2,
InteriorTable = 5,
LeafIndex = 10,
LeafTable = 13,
}Expand description
B-tree page types.
Variants§
InteriorIndex = 2
Interior index B-tree page.
InteriorTable = 5
Interior table B-tree page.
LeafIndex = 10
Leaf index B-tree page.
LeafTable = 13
Leaf table B-tree page.
Implementations§
Source§impl BTreePageType
impl BTreePageType
Trait Implementations§
Source§impl Clone for BTreePageType
impl Clone for BTreePageType
Source§fn clone(&self) -> BTreePageType
fn clone(&self) -> BTreePageType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BTreePageType
impl Debug for BTreePageType
Source§impl Hash for BTreePageType
impl Hash for BTreePageType
Source§impl PartialEq for BTreePageType
impl PartialEq for BTreePageType
impl Copy for BTreePageType
impl Eq for BTreePageType
impl StructuralPartialEq for BTreePageType
Auto Trait Implementations§
impl Freeze for BTreePageType
impl RefUnwindSafe for BTreePageType
impl Send for BTreePageType
impl Sync for BTreePageType
impl Unpin for BTreePageType
impl UnsafeUnpin for BTreePageType
impl UnwindSafe for BTreePageType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, _span: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).