pub struct UpdateQueryPlan<'a, C: QueryContext, Row = <C as QueryContext>::Model>{ /* private fields */ }Implementations§
Source§impl<'a, C, Row> UpdateQueryPlan<'a, C, Row>
impl<'a, C, Row> UpdateQueryPlan<'a, C, Row>
Trait Implementations§
Source§impl<'a, C, Row> ExecutablePlan<C> for UpdateQueryPlan<'a, C, Row>
impl<'a, C, Row> ExecutablePlan<C> for UpdateQueryPlan<'a, C, Row>
Source§impl<'a, C, Row> FetchablePlan<C, Row> for UpdateQueryPlan<'a, C, Row>
impl<'a, C, Row> FetchablePlan<C, Row> for UpdateQueryPlan<'a, C, Row>
fn fetch_one<'e, 'life0, 'async_trait, E>( &'life0 self, exec: E, ) -> Pin<Box<dyn Future<Output = Result<Row, Error>> + Send + 'async_trait>>
fn fetch_all<'e, 'life0, 'async_trait, E>( &'life0 self, exec: E, ) -> Pin<Box<dyn Future<Output = Result<Vec<Row>, Error>> + Send + 'async_trait>>
fn fetch_optional<'e, 'life0, 'async_trait, E>( &'life0 self, exec: E, ) -> Pin<Box<dyn Future<Output = Result<Option<Row>, Error>> + Send + 'async_trait>>
impl<'a, C, Row> Planable<C, Row> for UpdateQueryPlan<'a, C, Row>
Auto Trait Implementations§
impl<'a, C, Row> Freeze for UpdateQueryPlan<'a, C, Row>where
<<C as QueryContext>::Model as Updatable>::UpdateModel: Freeze,
<C as QueryContext>::Query: Freeze,
impl<'a, C, Row> RefUnwindSafe for UpdateQueryPlan<'a, C, Row>where
<<C as QueryContext>::Model as Updatable>::UpdateModel: RefUnwindSafe,
Row: RefUnwindSafe,
<C as QueryContext>::Query: RefUnwindSafe,
impl<'a, C, Row> Send for UpdateQueryPlan<'a, C, Row>where
Row: Send,
impl<'a, C, Row> Sync for UpdateQueryPlan<'a, C, Row>where
Row: Sync,
impl<'a, C, Row> Unpin for UpdateQueryPlan<'a, C, Row>where
<<C as QueryContext>::Model as Updatable>::UpdateModel: Unpin,
Row: Unpin,
<C as QueryContext>::Query: Unpin,
impl<'a, C, Row> UnsafeUnpin for UpdateQueryPlan<'a, C, Row>where
<<C as QueryContext>::Model as Updatable>::UpdateModel: UnsafeUnpin,
<C as QueryContext>::Query: UnsafeUnpin,
impl<'a, C, Row> UnwindSafe for UpdateQueryPlan<'a, C, Row>where
<<C as QueryContext>::Model as Updatable>::UpdateModel: UnwindSafe,
Row: UnwindSafe,
<C as QueryContext>::Query: 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> GetDeleteMarker for T
impl<T> GetDeleteMarker for T
default fn delete_marker_field() -> Option<&'static str>
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