pub enum DebugEvent<'a, T, E> {
OnNext(&'a T),
OnTermination(&'a Termination<E>),
Subscribed,
Disposed,
}Variants§
Auto Trait Implementations§
impl<'a, T, E> Freeze for DebugEvent<'a, T, E>
impl<'a, T, E> RefUnwindSafe for DebugEvent<'a, T, E>where
T: RefUnwindSafe,
E: RefUnwindSafe,
impl<'a, T, E> Send for DebugEvent<'a, T, E>
impl<'a, T, E> Sync for DebugEvent<'a, T, E>
impl<'a, T, E> Unpin for DebugEvent<'a, T, E>
impl<'a, T, E> UnwindSafe for DebugEvent<'a, T, E>where
T: RefUnwindSafe,
E: RefUnwindSafe,
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