[][src]Enum sqs_lambda::event_processor::EventProcessorMessage

pub enum EventProcessorMessage<M> where
    M: Send + Clone + Sync + 'static, 
{ process_event { event: M, }, start_processing {}, stop_processing {}, }

Variants

process_event

Fields of process_event

event: M
start_processing

Fields of start_processing

stop_processing

Fields of stop_processing

Trait Implementations

impl<M, C, EH, Input, Output, ER, CH> Actor<EventProcessorMessage<M>> for EventProcessor<M, C, EH, Input, Output, ER, CH> where
    M: Send + Clone + Sync + 'static,
    C: Consumer<M> + Clone + Send + Sync + 'static,
    EH: EventHandler<InputEvent = Input, OutputEvent = Output> + Send + Sync + Clone + 'static,
    Input: Send + Clone + 'static,
    Output: Send + Sync + Clone + 'static,
    ER: PayloadRetriever<Input, Message = M> + Send + Sync + Clone + 'static,
    CH: CompletionHandler<Message = M, CompletedEvent = OutputEvent<Output, <EH as EventHandler>::Error>> + Send + Sync + Clone + 'static, 
[src]

Auto Trait Implementations

impl<M> RefUnwindSafe for EventProcessorMessage<M> where
    M: RefUnwindSafe

impl<M> Send for EventProcessorMessage<M>

impl<M> Sync for EventProcessorMessage<M>

impl<M> Unpin for EventProcessorMessage<M> where
    M: Unpin

impl<M> UnwindSafe for EventProcessorMessage<M> where
    M: 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> 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]