pub enum ArtIdx {
Some(usize),
Many(usize),
Path(usize),
None,
}
Expand description
A mock-up of what you would store for each ArtNode
above, when columnar.
Variants§
Auto Trait Implementations§
impl Freeze for ArtIdx
impl RefUnwindSafe for ArtIdx
impl Send for ArtIdx
impl Sync for ArtIdx
impl Unpin for ArtIdx
impl UnwindSafe for ArtIdx
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