pub trait ObservableCollectionExt<T: 'static + Clone> {
// Required method
fn map<TDst, F>(&self, f: F) -> ObservableCollectionMap<TDst>
where TDst: 'static + Clone,
F: 'static + Fn(&T) -> TDst;
}
Required Methods§
fn map<TDst, F>(&self, f: F) -> ObservableCollectionMap<TDst>
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.