pub trait DBListenerTrait {
// Required methods
fn start<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<(Arc<Mutex<Receiver<Value>>>, JoinHandle<()>), DBListenerError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn stop<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<(), DBListenerError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}