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