[][src]Struct sqs_lambda::fs_notify_consumer::FsNotifyConsumerHandler

pub struct FsNotifyConsumerHandler<Err, CE, EventSerializer> where
    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, 
{ /* fields omitted */ }

Methods

impl<Err, CE, EventSerializer> FsNotifyConsumerHandler<Err, CE, EventSerializer> where
    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, 
[src]

pub fn new(
    directory: impl AsRef<str>,
    completion_handler: FsCompletionHandlerActor<Err, CE, EventSerializer>
) -> Self
[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> FsNotifyConsumerHandler<Err, CE, EventSerializer>[src]

pub async fn get_next_event<'_>(
    &'_ mut self,
    event_processor: EventProcessorActor<FsEvent>
)
[src]

pub fn _phantom(&self, _p: PhantomData<(Err, CE, EventSerializer)>)[src]

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]

Auto Trait Implementations

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

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

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

impl<Err, CE, EventSerializer> Unpin for FsNotifyConsumerHandler<Err, CE, EventSerializer>

impl<Err, CE, EventSerializer> !UnwindSafe for FsNotifyConsumerHandler<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>,