pub struct RowContainer { /* private fields */ }Expand description
Timely container for batches of inline-storage rows.
Implementations§
Source§impl RowContainer
impl RowContainer
Sourcepub fn with_capacity(capacity: usize) -> Self
pub fn with_capacity(capacity: usize) -> Self
Creates an empty row container with space for capacity rows.
Trait Implementations§
Source§impl Accountable for RowContainer
impl Accountable for RowContainer
Source§impl Clone for RowContainer
impl Clone for RowContainer
Source§fn clone(&self) -> RowContainer
fn clone(&self) -> RowContainer
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RowContainer
impl Debug for RowContainer
Source§impl Default for RowContainer
impl Default for RowContainer
Source§fn default() -> RowContainer
fn default() -> RowContainer
Returns the “default value” for a type. Read more
impl Eq for RowContainer
Source§impl PartialEq for RowContainer
impl PartialEq for RowContainer
Source§fn eq(&self, other: &RowContainer) -> bool
fn eq(&self, other: &RowContainer) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RowContainer
Auto Trait Implementations§
impl Freeze for RowContainer
impl RefUnwindSafe for RowContainer
impl Send for RowContainer
impl Sync for RowContainer
impl Unpin for RowContainer
impl UnsafeUnpin for RowContainer
impl UnwindSafe for RowContainer
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<C> Container for C
impl<T> Data for Twhere
T: Clone + 'static,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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 moreSource§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
Source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign, for types that do not implement AddAssign.