[][src]Enum sqs_lambda::fs_notify_consumer::FsNotifyConsumerHandlerMessage

pub enum FsNotifyConsumerHandlerMessage<Err: Debug + Send + Sync + Clone + 'static, CE: Send + Sync + Clone + 'static, EventSerializer: CompletionEventSerializer<CompletedEvent = CE, Output = Vec<u8>, Error = Error<Err>> + Send + Sync + Clone + 'static> {
    get_next_event {
        event_processor: EventProcessorActor<FsEvent>,
    },
    _phantom {
        _p: PhantomData<(Err, CE, EventSerializer)>,
    },
    release,
}

Variants

get_next_event

Fields of get_next_event

event_processor: EventProcessorActor<FsEvent>
_phantom

Fields of _phantom

_p: PhantomData<(Err, CE, EventSerializer)>
release

Trait Implementations

impl<Err: Debug + Send + Sync + Clone + 'static, CE: Send + Sync + Clone + 'static, EventSerializer: CompletionEventSerializer<CompletedEvent = CE, Output = Vec<u8>, Error = Error<Err>> + Send + Sync + Clone + 'static> Actor<FsNotifyConsumerHandlerMessage<Err, CE, EventSerializer>> for FsNotifyConsumerHandler<Err, CE, EventSerializer>[src]

impl<Err: Debug + Send + Sync + Clone + 'static, CE: Send + Sync + Clone + 'static, EventSerializer: CompletionEventSerializer<CompletedEvent = CE, Output = Vec<u8>, Error = Error<Err>> + Send + Sync + Clone + 'static> Message for FsNotifyConsumerHandlerMessage<Err, CE, EventSerializer>[src]

Auto Trait Implementations

impl<Err, CE, EventSerializer> !RefUnwindSafe for FsNotifyConsumerHandlerMessage<Err, CE, EventSerializer>

impl<Err, CE, EventSerializer> Send for FsNotifyConsumerHandlerMessage<Err, CE, EventSerializer>

impl<Err, CE, EventSerializer> Sync for FsNotifyConsumerHandlerMessage<Err, CE, EventSerializer>

impl<Err, CE, EventSerializer> Unpin for FsNotifyConsumerHandlerMessage<Err, CE, EventSerializer> where
    CE: Unpin,
    Err: Unpin,
    EventSerializer: Unpin

impl<Err, CE, EventSerializer> !UnwindSafe for FsNotifyConsumerHandlerMessage<Err, CE, EventSerializer>

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