[][src]Struct sqs_lambda::fs_event_retriever::FsRetriever

pub struct FsRetriever<D, E> where
    D: PayloadDecoder<E> + Clone + Send + 'static,
    E: Send + 'static, 
{ /* fields omitted */ }

Implementations

impl<D, E> FsRetriever<D, E> where
    D: PayloadDecoder<E> + Clone + Send + 'static,
    E: Send + 'static, 
[src]

pub fn new(decoder: D) -> Self[src]

Trait Implementations

impl<D: Clone, E: Clone> Clone for FsRetriever<D, E> where
    D: PayloadDecoder<E> + Clone + Send + 'static,
    E: Send + 'static, 
[src]

impl<D, E> PayloadRetriever<E> for FsRetriever<D, E> where
    D: PayloadDecoder<E> + Clone + Send + 'static,
    E: Send + 'static, 
[src]

type Message = FsEvent

Auto Trait Implementations

impl<D, E> RefUnwindSafe for FsRetriever<D, E> where
    D: RefUnwindSafe,
    E: RefUnwindSafe

impl<D, E> Send for FsRetriever<D, E>

impl<D, E> Sync for FsRetriever<D, E> where
    D: Sync,
    E: Sync

impl<D, E> Unpin for FsRetriever<D, E> where
    D: Unpin,
    E: Unpin

impl<D, E> UnwindSafe for FsRetriever<D, E> where
    D: UnwindSafe,
    E: UnwindSafe

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> CloneAny for T where
    T: Clone + Any

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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