pub struct VanEmdeBoasTree {
pub universe_size: usize,
pub min: Option<usize>,
pub max: Option<usize>,
pub summary: Option<Box<VanEmdeBoasTree>>,
}Fields§
§universe_size: usize§min: Option<usize>§max: Option<usize>§summary: Option<Box<VanEmdeBoasTree>>Implementations§
Trait Implementations§
Source§impl Clone for VanEmdeBoasTree
impl Clone for VanEmdeBoasTree
Source§fn clone(&self) -> VanEmdeBoasTree
fn clone(&self) -> VanEmdeBoasTree
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 moreAuto Trait Implementations§
impl Freeze for VanEmdeBoasTree
impl RefUnwindSafe for VanEmdeBoasTree
impl Send for VanEmdeBoasTree
impl Sync for VanEmdeBoasTree
impl Unpin for VanEmdeBoasTree
impl UnsafeUnpin for VanEmdeBoasTree
impl UnwindSafe for VanEmdeBoasTree
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