pub struct SelectGetableValue<T, C>{ /* private fields */ }Expand description
SelectorTrait adapter that decodes each row as a tuple T whose
columns are addressed by the iden enum C (rather than positionally).
Trait Implementationsยง
Sourceยงimpl<T, C> Debug for SelectGetableValue<T, C>
impl<T, C> Debug for SelectGetableValue<T, C>
Sourceยงimpl<T, C> Default for SelectGetableValue<T, C>
impl<T, C> Default for SelectGetableValue<T, C>
Sourceยงimpl<T, C> SelectorTrait for SelectGetableValue<T, C>
impl<T, C> SelectorTrait for SelectGetableValue<T, C>
Sourceยงfn from_raw_query_result(res: QueryResult) -> Result<Self::Item, DbErr>
fn from_raw_query_result(res: QueryResult) -> Result<Self::Item, DbErr>
Decode one row.
Auto Trait Implementationsยง
impl<T, C> Freeze for SelectGetableValue<T, C>
impl<T, C> RefUnwindSafe for SelectGetableValue<T, C>where
C: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, C> Send for SelectGetableValue<T, C>
impl<T, C> Sync for SelectGetableValue<T, C>
impl<T, C> Unpin for SelectGetableValue<T, C>
impl<T, C> UnsafeUnpin for SelectGetableValue<T, C>
impl<T, C> UnwindSafe for SelectGetableValue<T, C>where
C: UnwindSafe,
T: UnwindSafe,
Blanket Implementationsยง
impl<T> Allocation for T
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Sourceยงimpl<T> Instrument for T
impl<T> Instrument for T
Sourceยงfn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Sourceยง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