pub struct MulticastDisposal<'or, T, E, R> { /* private fields */ }Expand description
Unsubscribes one observer from a SerializedMulticast.
Trait Implementations§
Source§impl<T, E, R> Disposable for MulticastDisposal<'_, T, E, R>
impl<T, E, R> Disposable for MulticastDisposal<'_, T, E, R>
Auto Trait Implementations§
impl<'or, T, E, R> Freeze for MulticastDisposal<'or, T, E, R>where
SerializedDelivery<Action<'or, T, E>, E, Subscribers<'or, T, E>, Resources<E, R>>: Freeze,
impl<'or, T, E, R> RefUnwindSafe for MulticastDisposal<'or, T, E, R>where
SerializedDelivery<Action<'or, T, E>, E, Subscribers<'or, T, E>, Resources<E, R>>: RefUnwindSafe,
impl<'or, T, E, R> Send for MulticastDisposal<'or, T, E, R>where
SerializedDelivery<Action<'or, T, E>, E, Subscribers<'or, T, E>, Resources<E, R>>: Send,
impl<'or, T, E, R> Sync for MulticastDisposal<'or, T, E, R>where
SerializedDelivery<Action<'or, T, E>, E, Subscribers<'or, T, E>, Resources<E, R>>: Sync,
impl<'or, T, E, R> Unpin for MulticastDisposal<'or, T, E, R>where
SerializedDelivery<Action<'or, T, E>, E, Subscribers<'or, T, E>, Resources<E, R>>: Unpin,
impl<'or, T, E, R> UnsafeUnpin for MulticastDisposal<'or, T, E, R>where
SerializedDelivery<Action<'or, T, E>, E, Subscribers<'or, T, E>, Resources<E, R>>: UnsafeUnpin,
impl<'or, T, E, R> UnwindSafe for MulticastDisposal<'or, T, E, R>where
SerializedDelivery<Action<'or, T, E>, E, Subscribers<'or, T, E>, Resources<E, R>>: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<D> DisposableExt for Dwhere
D: Disposable,
impl<D> DisposableExt for Dwhere
D: Disposable,
fn into_boxed<'dis>(self) -> BoxedDisposal<'dis>where
Self: MaybeSend + 'dis,
Source§fn into_subscription<D>(self) -> Subscription<D>where
D: Disposable + From<Self>,
fn into_subscription<D>(self) -> Subscription<D>where
D: Disposable + From<Self>,
Converts this disposal into a subscription whose inner disposal is
created through
From.