pub trait PortTryFrom3<Src>: Sized {
type Error;
// Required method
fn port_try_from3(src: Src) -> Result<Self, Self::Error>;
}Expand description
The dual trait: from a source type Src into Self, given port 0.
Required Associated Types§
Required Methods§
fn port_try_from3(src: Src) -> Result<Self, Self::Error>
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.