Skip to main content

IntoObserver

Trait IntoObserver 

Source
pub trait IntoObserver<Marker>: Send + 'static {
    // Required method
    fn into_observer(self) -> Observer;
}
Expand description

Trait for types that can be converted into an Observer.

Required Methods§

Source

fn into_observer(self) -> Observer

Converts this type into an Observer.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§