[][src]Enum sqs_lambda::sqs_consumer::SqsConsumerMessage

pub enum SqsConsumerMessage<S: Sqs + Send + Sync + 'static, CH: CompletionHandler + Clone + Send + Sync + 'static> {
    get_new_event {
        event_processor: EventProcessorActor<SqsMessage>,
    },
    _p {
        __p: PhantomData<(S, CH)>,
    },
}

Variants

get_new_event

Fields of get_new_event

event_processor: EventProcessorActor<SqsMessage>
_p

Fields of _p

__p: PhantomData<(S, CH)>

Trait Implementations

impl<S: Sqs + Send + Sync + 'static, CH: CompletionHandler + Clone + Send + Sync + 'static> Actor<SqsConsumerMessage<S, CH>> for SqsConsumer<S, CH>[src]

Auto Trait Implementations

impl<S, CH> !RefUnwindSafe for SqsConsumerMessage<S, CH>

impl<S, CH> Send for SqsConsumerMessage<S, CH>

impl<S, CH> Sync for SqsConsumerMessage<S, CH>

impl<S, CH> Unpin for SqsConsumerMessage<S, CH> where
    CH: Unpin,
    S: Unpin

impl<S, CH> !UnwindSafe for SqsConsumerMessage<S, CH>

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<D> OwoColorize for D

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]

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

impl<T> WithSubscriber for T[src]