Struct SelectGetableValue
pub struct SelectGetableValue<T, C>{ /* private fields */ }
Expand description
Get tuple from query result based on a list of column identifiers
Trait Implementations§
§impl<T, C> Debug for SelectGetableValue<T, C>
impl<T, C> Debug for SelectGetableValue<T, C>
§impl<T, C> SelectorTrait for SelectGetableValue<T, C>
impl<T, C> SelectorTrait for SelectGetableValue<T, C>
type Item = T
§fn from_raw_query_result(
res: QueryResult,
) -> Result<<SelectGetableValue<T, C> as SelectorTrait>::Item, DbErr>
fn from_raw_query_result( res: QueryResult, ) -> Result<<SelectGetableValue<T, C> as SelectorTrait>::Item, DbErr>
The method to perform a query on a Model
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>where
T: Send,
impl<T, C> Sync for SelectGetableValue<T, C>where
T: Sync,
impl<T, C> Unpin for SelectGetableValue<T, C>
impl<T, C> UnwindSafe for SelectGetableValue<T, C>where
C: UnwindSafe,
T: 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
§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