pub struct JoinHashMapU32 {
map: HashTable<(u64, u32)>,
next: Vec<u32>,
}Fields§
§map: HashTable<(u64, u32)>§next: Vec<u32>Implementations§
Source§impl JoinHashMapU32
impl JoinHashMapU32
pub fn with_capacity(cap: usize) -> Self
Trait Implementations§
Source§impl Debug for JoinHashMapU32
impl Debug for JoinHashMapU32
Source§impl JoinHashMapType for JoinHashMapU32
impl JoinHashMapType for JoinHashMapU32
fn extend_zero(&mut self, _: usize)
fn update_from_iter<'a>( &mut self, iter: Box<dyn Iterator<Item = (usize, &'a u64)> + Send + 'a>, deleted_offset: usize, )
fn get_matched_indices<'a>( &self, iter: Box<dyn Iterator<Item = (usize, &'a u64)> + 'a>, deleted_offset: Option<usize>, ) -> (Vec<u32>, Vec<u64>)
fn get_matched_indices_with_limit_offset( &self, hash_values: &[u64], limit: usize, offset: (usize, Option<u64>), ) -> (Vec<u32>, Vec<u64>, Option<(usize, Option<u64>)>)
Auto Trait Implementations§
impl Freeze for JoinHashMapU32
impl RefUnwindSafe for JoinHashMapU32
impl Send for JoinHashMapU32
impl Sync for JoinHashMapU32
impl Unpin for JoinHashMapU32
impl UnwindSafe for JoinHashMapU32
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more