pub trait NetworkExt<I: FieldInterests> {
// Required method
fn from_watcher_properties(
properties: &Properties<I>,
) -> Result<Self, NetworkConversionError>
where Self: Sized;
}Required Methods§
fn from_watcher_properties(
properties: &Properties<I>,
) -> Result<Self, NetworkConversionError>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".