Trait ate::redo::LogWritable[][src]

pub trait LogWritable {
#[must_use]    fn write<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        evt: &'life1 EventData
    ) -> Pin<Box<dyn Future<Output = Result<u64, SerializationError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn flush<'life0, 'async_trait>(
        &'life0 mut self
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use]fn write<'life0, 'life1, 'async_trait>(
    &'life0 mut self,
    evt: &'life1 EventData
) -> Pin<Box<dyn Future<Output = Result<u64, SerializationError>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 
[src]

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

Loading content...

Implementors

impl LogWritable for RedoLog[src]

Loading content...