pub trait ObserverPushObserverNotificationExtention: RxObserver {
// Required method
fn push(
&mut self,
notification: impl Into<ObserverNotification<Self::In, Self::InError>>,
);
}Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.