pub enum Internal {
Named(&'static [Named]),
Numbered(&'static [Numbered]),
Homogeneous(Homogeneous),
}
Expand description
An internal node with children
Always non-empty
Variants§
Named(&'static [Named])
Named children
Numbered(&'static [Numbered])
Numbered heterogeneous children
Homogeneous(Homogeneous)
Homogeneous numbered children
Implementations§
Source§impl Internal
impl Internal
Sourcepub const fn get_schema(&self, idx: usize) -> &Schema
pub const fn get_schema(&self, idx: usize) -> &Schema
Trait Implementations§
Source§impl Ord for Internal
impl Ord for Internal
Source§impl PartialOrd for Internal
impl PartialOrd for Internal
impl Eq for Internal
impl StructuralPartialEq for Internal
Auto Trait Implementations§
impl Freeze for Internal
impl RefUnwindSafe for Internal
impl Send for Internal
impl Sync for Internal
impl Unpin for Internal
impl UnwindSafe for Internal
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