PortTryInto3

Trait PortTryInto3 

Source
pub trait PortTryInto3<T> {
    type Error;

    // Required method
    fn port_try_into3(self) -> Result<T, Self::Error>;
}
Expand description

A local trait for “port-aware” conversions

Required Associated Types§

Required Methods§

Source

fn port_try_into3(self) -> Result<T, Self::Error>

Convert self into a T, using port as needed.

Implementors§