[][src]Struct amadeus_postgres::Closure

pub struct Closure<Row> where
    Row: PostgresData
{ /* fields omitted */ }

Trait Implementations

impl<Row> Clone for Closure<Row> where
    Row: PostgresData
[src]

impl<'de, Row> Deserialize<'de> for Closure<Row> where
    Row: PostgresData
[src]

impl<Row> FnMut<((ConnectParams, Vec<PostgresSelect>),)> for Closure<Row> where
    Row: PostgresData
[src]

impl<Row> FnOnce<((ConnectParams, Vec<PostgresSelect>),)> for Closure<Row> where
    Row: PostgresData
[src]

type Output = Pin<Box<dyn Stream<Item = Result<Row, PostgresError>> + Send>>

The returned type after the call operator is used.

impl<Row> Serialize for Closure<Row> where
    Row: PostgresData
[src]

Auto Trait Implementations

impl<Row> RefUnwindSafe for Closure<Row>

impl<Row> Send for Closure<Row>

impl<Row> Sync for Closure<Row>

impl<Row> Unpin for Closure<Row>

impl<Row> UnwindSafe for Closure<Row>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<A, B> Downcast<A> for B where
    A: DowncastFrom<B>, 
[src]

impl<T, Args> FnMut<Args> for T where
    T: FnMut<Args>, 
[src]

impl<T, Args> FnOnce<Args> for T where
    T: FnOnce<Args>, 
[src]

type Output = <T as FnOnce<Args>>::Output

The returned type after the call operator is used.

impl<A, F> FnOnceBox<A> for F where
    F: FnOnce<A>, 
[src]

type Output = <F as FnOnce<A>>::Output

The returned type after the call operator is used.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ProcessSend for T where
    T: Send + Serialize + for<'de> Deserialize<'de> + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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