pub trait CleanupFromOther: Send + Sync {
    // Required method
    fn cleanup_from_other<'async_trait>(
        self: Box<Self>,
        my_scope_id: ScopeId
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
       where Self: 'async_trait;
}
Expand description

Cleanup/unsubscribe from other

Required Methods§

source

fn cleanup_from_other<'async_trait>( self: Box<Self>, my_scope_id: ScopeId ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where Self: 'async_trait,

Cleanup subscriber from other scopes

Implementors§