pub trait CleanupFromOther: Send + Sync {
    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

Cleanup subscriber from other scopes

Implementors