pub struct Row<R>(pub Time, pub R);
Tuple Fields§
§0: Time
§1: R
Trait Implementations§
Source§impl<R: NamedRowFormat> NamedRowFormat for Row<R>
impl<R: NamedRowFormat> NamedRowFormat for Row<R>
Source§impl<R: Ord> Ord for Row<R>
impl<R: Ord> Ord for Row<R>
Source§impl<R: PartialOrd> PartialOrd for Row<R>
impl<R: PartialOrd> PartialOrd for Row<R>
Source§impl<R> RowBatchBuilder<Row<R>> for RowBuilder<R::Builder>where
R: RowFormat,
impl<R> RowBatchBuilder<Row<R>> for RowBuilder<R::Builder>where
R: RowFormat,
Source§impl<R: RowFormat> RowFormatView<Row<R>> for RowView<R>
impl<R: RowFormat> RowFormatView<Row<R>> for RowView<R>
impl<R: Copy> Copy for Row<R>
impl<R: Eq> Eq for Row<R>
impl<R> StructuralPartialEq for Row<R>
Auto Trait Implementations§
impl<R> Freeze for Row<R>where
R: Freeze,
impl<R> RefUnwindSafe for Row<R>where
R: RefUnwindSafe,
impl<R> Send for Row<R>where
R: Send,
impl<R> Sync for Row<R>where
R: Sync,
impl<R> Unpin for Row<R>where
R: Unpin,
impl<R> UnwindSafe for Row<R>where
R: UnwindSafe,
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,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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<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 more