Struct generic_btree::BTree

source ·
pub struct BTree<B: BTreeTrait> { /* private fields */ }

Implementations§

source§

impl<B: BTreeTrait> BTree<B>

source

pub fn new() -> Self

source

pub fn insert<Q>(&mut self, tree_index: &Q::QueryArg, data: B::Elem)where Q: Query<B>,

source

pub fn insert_by_query_result(&mut self, result: QueryResult, data: B::Elem)

source

pub fn batch_insert_by_query_result( &mut self, result: QueryResult, data: &[B::Elem] )where B::Elem: Clone,

source

pub fn delete<Q>(&mut self, query: &Q::QueryArg) -> boolwhere Q: Query<B>,

source

pub fn query<Q>(&self, query: &Q::QueryArg) -> QueryResultwhere Q: Query<B>,

source

pub fn drain<Q>(&mut self, range: Range<Q::QueryArg>) -> Drain<'_, B, Q>where Q: Query<B>,

source

pub fn iter_mut<Q>( &mut self, range: Range<Q::QueryArg> ) -> impl Iterator<Item = &mut B::Elem> + '_where Q: Query<B>,

source

pub fn iter(&self) -> impl Iterator<Item = &B::Elem> + '_

source

pub fn iter_range<Q>( &self, range: Range<Q::QueryArg> ) -> impl Iterator<Item = &B::Elem> + '_where Q: Query<B>,

Trait Implementations§

source§

impl<Elem: Clone, B: BTreeTrait<Elem = Elem>> Clone for BTree<B>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<B: Debug + BTreeTrait> Debug for BTree<B>where B::Cache: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<B: BTreeTrait> Default for BTree<B>

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<B> RefUnwindSafe for BTree<B>where <B as BTreeTrait>::Cache: RefUnwindSafe, <B as BTreeTrait>::Elem: RefUnwindSafe,

§

impl<B> Send for BTree<B>where <B as BTreeTrait>::Cache: Send, <B as BTreeTrait>::Elem: Send,

§

impl<B> Sync for BTree<B>where <B as BTreeTrait>::Cache: Sync, <B as BTreeTrait>::Elem: Sync,

§

impl<B> Unpin for BTree<B>where <B as BTreeTrait>::Cache: Unpin, <B as BTreeTrait>::Elem: Unpin,

§

impl<B> UnwindSafe for BTree<B>where <B as BTreeTrait>::Cache: UnwindSafe, <B as BTreeTrait>::Elem: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.