pub trait StorageEnqueuer<U, S, QueuedMail>: Send + AsyncWritewhere
    S: ?Sized + Storage<U>,
{ fn commit<'async_trait>(
        self,
        destinations: Vec<(MailMetadata<U>, ScheduleInfo)>
    ) -> Pin<Box<dyn Future<Output = Result<Vec<QueuedMail>, S::Error>> + Send + 'async_trait>>
    where
        Self: 'async_trait
; }

Required Methods

Implementors