[−][src]Struct sqlx_core::query_scalar::QueryScalar
Raw SQL query with bind parameters, mapped to a concrete type using FromRow on (O,).
Returned from query_scalar.
Implementations
impl<'q, DB: Database, O> QueryScalar<'q, DB, O, <DB as HasArguments<'q>>::Arguments>[src]
pub fn bind<T: 'q + Send + Encode<'q, DB> + Type<DB>>(self, value: T) -> Self[src]
Bind a value for use with this SQL query.
See Query::bind.
impl<'q, DB, O, A> QueryScalar<'q, DB, O, A> where
DB: Database,
O: Send + Unpin,
A: 'q + IntoArguments<'q, DB>,
(O,): Send + Unpin + for<'r> FromRow<'r, DB::Row>, [src]
DB: Database,
O: Send + Unpin,
A: 'q + IntoArguments<'q, DB>,
(O,): Send + Unpin + for<'r> FromRow<'r, DB::Row>,
pub fn fetch<'e, 'c: 'e, E>(
self,
executor: E
) -> BoxStream<'e, Result<O, Error>> where
'q: 'e,
E: 'e + Executor<'c, Database = DB>,
DB: 'e,
A: 'e,
O: 'e, [src]
self,
executor: E
) -> BoxStream<'e, Result<O, Error>> where
'q: 'e,
E: 'e + Executor<'c, Database = DB>,
DB: 'e,
A: 'e,
O: 'e,
Execute the query and return the generated results as a stream.
pub fn fetch_many<'e, 'c: 'e, E>(
self,
executor: E
) -> BoxStream<'e, Result<Either<DB::Done, O>, Error>> where
'q: 'e,
E: 'e + Executor<'c, Database = DB>,
DB: 'e,
A: 'e,
O: 'e, [src]
self,
executor: E
) -> BoxStream<'e, Result<Either<DB::Done, O>, Error>> where
'q: 'e,
E: 'e + Executor<'c, Database = DB>,
DB: 'e,
A: 'e,
O: 'e,
Execute multiple queries and return the generated results as a stream from each query, in a stream.
pub async fn fetch_all<'e, 'c: 'e, E>(
self,
executor: E
) -> Result<Vec<O>, Error> where
'q: 'e,
E: 'e + Executor<'c, Database = DB>,
DB: 'e,
(O,): 'e,
A: 'e, [src]
self,
executor: E
) -> Result<Vec<O>, Error> where
'q: 'e,
E: 'e + Executor<'c, Database = DB>,
DB: 'e,
(O,): 'e,
A: 'e,
Execute the query and return all the generated results, collected into a Vec.
pub async fn fetch_one<'e, 'c: 'e, E>(self, executor: E) -> Result<O, Error> where
'q: 'e,
E: 'e + Executor<'c, Database = DB>,
DB: 'e,
O: 'e,
A: 'e, [src]
'q: 'e,
E: 'e + Executor<'c, Database = DB>,
DB: 'e,
O: 'e,
A: 'e,
Execute the query and returns exactly one row.
pub async fn fetch_optional<'e, 'c: 'e, E>(
self,
executor: E
) -> Result<Option<O>, Error> where
'q: 'e,
E: 'e + Executor<'c, Database = DB>,
DB: 'e,
O: 'e,
A: 'e, [src]
self,
executor: E
) -> Result<Option<O>, Error> where
'q: 'e,
E: 'e + Executor<'c, Database = DB>,
DB: 'e,
O: 'e,
A: 'e,
Execute the query and returns at most one row.
Trait Implementations
impl<'q, DB: Database, O: Send, A: Send> Execute<'q, DB> for QueryScalar<'q, DB, O, A> where
A: 'q + IntoArguments<'q, DB>, [src]
A: 'q + IntoArguments<'q, DB>,
fn sql(&self) -> &'q str[src]
fn statement(&self) -> Option<&<DB as HasStatement<'q>>::Statement>[src]
fn take_arguments(&mut self) -> Option<<DB as HasArguments<'q>>::Arguments>[src]
fn persistent(&self) -> bool[src]
Auto Trait Implementations
impl<'q, DB, O, A> RefUnwindSafe for QueryScalar<'q, DB, O, A> where
A: RefUnwindSafe,
DB: RefUnwindSafe,
O: RefUnwindSafe,
<DB as HasStatement<'q>>::Statement: RefUnwindSafe,
A: RefUnwindSafe,
DB: RefUnwindSafe,
O: RefUnwindSafe,
<DB as HasStatement<'q>>::Statement: RefUnwindSafe,
impl<'q, DB, O, A> Send for QueryScalar<'q, DB, O, A> where
A: Send,
O: Send,
<DB as HasStatement<'q>>::Statement: Sync,
A: Send,
O: Send,
<DB as HasStatement<'q>>::Statement: Sync,
impl<'q, DB, O, A> Sync for QueryScalar<'q, DB, O, A> where
A: Sync,
DB: Sync,
O: Sync,
<DB as HasStatement<'q>>::Statement: Sync,
A: Sync,
DB: Sync,
O: Sync,
<DB as HasStatement<'q>>::Statement: Sync,
impl<'q, DB, O, A> Unpin for QueryScalar<'q, DB, O, A> where
A: Unpin,
DB: Unpin,
O: Unpin,
A: Unpin,
DB: Unpin,
O: Unpin,
impl<'q, DB, O, A> UnwindSafe for QueryScalar<'q, DB, O, A> where
A: UnwindSafe,
DB: UnwindSafe,
O: UnwindSafe,
<DB as HasStatement<'q>>::Statement: RefUnwindSafe,
A: UnwindSafe,
DB: UnwindSafe,
O: UnwindSafe,
<DB as HasStatement<'q>>::Statement: RefUnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,