Trait esrs::aggregate::Eraser[][src]

pub trait Eraser<Event: Serialize + DeserializeOwned + Clone + Send + Sync, Error: From<Error> + From<Error> + Send + Sync> {
    #[must_use]
    fn delete<'life0, 'async_trait>(
        &'life0 self,
        aggregate_id: Uuid
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use]
fn delete<'life0, 'async_trait>(
    &'life0 self,
    aggregate_id: Uuid
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Implementors