pub trait Logger1Signals {
// Required methods
fn metadata_updated<'life0, 'life1, 'async_trait>(
&'life0 self,
key: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn store_signal<'life0, 'life1, 'async_trait>(
&'life0 self,
batch: Vec<(String, zValue<'life1>, i64)>,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Expand description
Trait providing all signal emission methods for Logger1.