Struct sqlx_core::query::Map

source ·
pub struct Map<'q, DB: Database, F, A> { /* private fields */ }
Expand description

SQL query that will map its results to owned Rust types.

Returned by Query::try_map, query!(), etc. Has most of the same methods as Query but the return types are changed to reflect the mapping. However, there is no equivalent of Query::execute as it doesn’t make sense to map the result type and then ignore it.

Query::bind is also omitted; stylistically we recommend placing your .bind() calls before .try_map(). This is also to prevent adding superfluous binds to the result of query!() et al.

Implementations§

source§

impl<'q, DB, F, O, A> Map<'q, DB, F, A>where DB: Database, F: FnMut(DB::Row) -> Result<O, Error> + Send, O: Send + Unpin, A: 'q + Send + IntoArguments<'q, DB>,

source

pub fn map<G, P>( self, g: G ) -> Map<'q, DB, impl FnMut(DB::Row) -> Result<P, Error> + Send, A>where G: FnMut(O) -> P + Send, P: Unpin,

Map each row in the result to another type.

See try_map for a fallible version of this method.

The query_as method will construct a mapped query using a FromRow implementation.

source

pub fn try_map<G, P>( self, g: G ) -> Map<'q, DB, impl FnMut(DB::Row) -> Result<P, Error> + Send, A>where G: FnMut(O) -> Result<P, Error> + Send, P: Unpin,

Map each row in the result to another type.

The query_as method will construct a mapped query using a FromRow implementation.

source

pub fn fetch<'e, 'c: 'e, E>( self, executor: E ) -> BoxStream<'e, Result<O, Error>>where E: 'e + Executor<'c, Database = DB>, DB: 'e, F: 'e, O: 'e, 'q: 'e,

Execute the query and return the generated results as a stream.

source

pub fn fetch_many<'e, 'c: 'e, E>( self, executor: E ) -> BoxStream<'e, Result<Either<DB::QueryResult, O>, Error>>where E: 'e + Executor<'c, Database = DB>, DB: 'e, F: 'e, O: 'e, 'q: 'e,

Execute multiple queries and return the generated results as a stream from each query, in a stream.

source

pub async fn fetch_all<'e, 'c: 'e, E>( self, executor: E ) -> Result<Vec<O>, Error>where E: 'e + Executor<'c, Database = DB>, DB: 'e, F: 'e, O: 'e, 'q: 'e,

Execute the query and return all the generated results, collected into a Vec.

source

pub async fn fetch_one<'e, 'c: 'e, E>(self, executor: E) -> Result<O, Error>where E: 'e + Executor<'c, Database = DB>, DB: 'e, F: 'e, O: 'e, 'q: 'e,

Execute the query and returns exactly one row.

source

pub async fn fetch_optional<'e, 'c: 'e, E>( self, executor: E ) -> Result<Option<O>, Error>where E: 'e + Executor<'c, Database = DB>, DB: 'e, F: 'e, O: 'e, 'q: 'e,

Execute the query and returns at most one row.

Trait Implementations§

source§

impl<'q, DB, F: Send, A> Execute<'q, DB> for Map<'q, DB, F, A>where DB: Database, A: IntoArguments<'q, DB> + Send,

source§

fn sql(&self) -> &'q str

Gets the SQL that will be executed.
source§

fn statement(&self) -> Option<&<DB as HasStatement<'q>>::Statement>

Gets the previously cached statement, if available.
source§

fn take_arguments(&mut self) -> Option<<DB as HasArguments<'q>>::Arguments>

Returns the arguments to be bound against the query string. Read more
source§

fn persistent(&self) -> bool

Returns true if the statement should be cached.

Auto Trait Implementations§

§

impl<'q, DB, F, A> RefUnwindSafe for Map<'q, DB, F, A>where A: RefUnwindSafe, DB: RefUnwindSafe, F: RefUnwindSafe, <DB as HasStatement<'q>>::Statement: RefUnwindSafe,

§

impl<'q, DB, F, A> Send for Map<'q, DB, F, A>where A: Send, F: Send,

§

impl<'q, DB, F, A> Sync for Map<'q, DB, F, A>where A: Sync, DB: Sync, F: Sync,

§

impl<'q, DB, F, A> Unpin for Map<'q, DB, F, A>where A: Unpin, DB: Unpin, F: Unpin,

§

impl<'q, DB, F, A> UnwindSafe for Map<'q, DB, F, A>where A: UnwindSafe, DB: UnwindSafe, F: UnwindSafe, <DB as HasStatement<'q>>::Statement: RefUnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V