Struct apalis_sql::from_row::SqlRequest
source · pub struct SqlRequest<T> { /* private fields */ }Expand description
Wrapper for Request
Trait Implementations§
source§impl<T: Clone> Clone for SqlRequest<T>
impl<T: Clone> Clone for SqlRequest<T>
source§fn clone(&self) -> SqlRequest<T>
fn clone(&self) -> SqlRequest<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<T: Debug> Debug for SqlRequest<T>
impl<T: Debug> Debug for SqlRequest<T>
source§impl<T> From<SqlRequest<T>> for Request<T>
impl<T> From<SqlRequest<T>> for Request<T>
source§fn from(val: SqlRequest<T>) -> Self
fn from(val: SqlRequest<T>) -> Self
Converts to this type from the input type.
source§impl<'r, T: Decode<'r, MySql> + Type<MySql>> FromRow<'r, MySqlRow> for SqlRequest<T>
Available on crate feature mysql only.
impl<'r, T: Decode<'r, MySql> + Type<MySql>> FromRow<'r, MySqlRow> for SqlRequest<T>
Available on crate feature
mysql only.Auto Trait Implementations§
impl<T> Freeze for SqlRequest<T>where
T: Freeze,
impl<T> RefUnwindSafe for SqlRequest<T>where
T: RefUnwindSafe,
impl<T> Send for SqlRequest<T>where
T: Send,
impl<T> Sync for SqlRequest<T>where
T: Sync,
impl<T> Unpin for SqlRequest<T>where
T: Unpin,
impl<T> UnwindSafe for SqlRequest<T>where
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
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