pub trait SyncEventStream: Send + Sync {
    // Required method
    fn event_stream(
        &self,
        name: &'static str
    ) -> Pin<Box<dyn Stream<Item = SyncEvent> + Send + 'static, Global>>;
}

Required Methods§

source

fn event_stream( &self, name: &'static str ) -> Pin<Box<dyn Stream<Item = SyncEvent> + Send + 'static, Global>>

Subscribe to syncing-related events.

Implementations on Foreign Types§

source§

impl<T> SyncEventStream for Arc<T>where T: SyncEventStream + ?Sized,

source§

fn event_stream( &self, name: &'static str ) -> Pin<Box<dyn Stream<Item = SyncEvent> + Send + 'static, Global>>

Implementors§