ih_muse::preludeTrait Recorder
Source pub trait Recorder {
// Required methods
fn record<'life0, 'async_trait>(
&'life0 mut self,
event: RecordedEventWithTime,
) -> Pin<Box<dyn Future<Output = Result<(), MuseError>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
fn flush<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<(), MuseError>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
fn close<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<(), MuseError>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
}