[][src]Struct amadeus_serde::Closure

pub struct Closure<P, Row, E> where
    P: Partition,
    Row: SerdeData,
    E: 'static, 
{ /* fields omitted */ }

Trait Implementations

impl<P, Row, E> Clone for Closure<P, Row, E> where
    P: Partition,
    Row: SerdeData,
    E: 'static, 
[src]

impl<'de, P, Row, E> Deserialize<'de> for Closure<P, Row, E> where
    P: Partition,
    Row: SerdeData,
    E: 'static, 
[src]

impl<P, Row, E> FnMut<(P,)> for Closure<P, Row, E> where
    P: Partition,
    Row: SerdeData,
    E: 'static, 
[src]

impl<P, Row, E> FnOnce<(P,)> for Closure<P, Row, E> where
    P: Partition,
    Row: SerdeData,
    E: 'static, 
[src]

type Output = impl Stream<Item = Result<Row, CsvError<E, <P as Partition>::Error, <<P as Partition>::Page as Page>::Error>>>

The returned type after the call operator is used.

impl<P, Row, E> Serialize for Closure<P, Row, E> where
    P: Partition,
    Row: SerdeData,
    E: 'static, 
[src]

Auto Trait Implementations

impl<P, Row, E> RefUnwindSafe for Closure<P, Row, E>

impl<P, Row, E> Send for Closure<P, Row, E>

impl<P, Row, E> Sync for Closure<P, Row, E>

impl<P, Row, E> Unpin for Closure<P, Row, E>

impl<P, Row, E> UnwindSafe for Closure<P, Row, E>

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> 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>,