[][src]Struct amadeus_core::par_sink::FolderSyncReducer

pub struct FolderSyncReducer<A, C> { /* fields omitted */ }

Implementations

impl<A, C> FolderSyncReducer<A, C>[src]

pub fn new(folder: C) -> Self[src]

Constructs a new FolderSyncReducer.

Trait Implementations

impl<A, C> Clone for FolderSyncReducer<A, C> where
    C: Clone
[src]

impl<'de, A, C> Deserialize<'de> for FolderSyncReducer<A, C> where
    C: Deserialize<'de>, 
[src]

impl<A, C> Reducer<A> for FolderSyncReducer<A, C> where
    C: FolderSync<A>, 
[src]

type Output = C::Output

type Async = FolderSyncReducerAsync<A, C, C::Output>

impl<A, C> ReducerProcessSend<A> for FolderSyncReducer<A, C> where
    C: FolderSync<A>,
    C::Output: ProcessSend + 'static, 
[src]

type Output = C::Output

impl<A, C> ReducerSend<A> for FolderSyncReducer<A, C> where
    C: FolderSync<A>,
    C::Output: Send + 'static, 
[src]

type Output = C::Output

impl<A, C> Serialize for FolderSyncReducer<A, C> where
    C: Serialize
[src]

Auto Trait Implementations

impl<A, C> RefUnwindSafe for FolderSyncReducer<A, C> where
    C: RefUnwindSafe

impl<A, C> Send for FolderSyncReducer<A, C> where
    C: Send

impl<A, C> Sync for FolderSyncReducer<A, C> where
    C: Sync

impl<A, C> Unpin for FolderSyncReducer<A, C> where
    C: Unpin

impl<A, C> UnwindSafe for FolderSyncReducer<A, C> where
    C: UnwindSafe

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