pub struct SearchTree { /* private fields */ }Expand description
A tree that associates a string key with an usize index.
Implementations§
Trait Implementations§
Source§impl Debug for SearchTree
impl Debug for SearchTree
Source§impl Default for SearchTree
impl Default for SearchTree
Source§fn default() -> SearchTree
fn default() -> SearchTree
Returns the “default value” for a type. Read more
Source§impl<'key> FromIterator<(usize, &'key str)> for SearchTree
impl<'key> FromIterator<(usize, &'key str)> for SearchTree
Auto Trait Implementations§
impl Freeze for SearchTree
impl RefUnwindSafe for SearchTree
impl Send for SearchTree
impl Sync for SearchTree
impl Unpin for SearchTree
impl UnsafeUnpin for SearchTree
impl UnwindSafe for SearchTree
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