pub trait ValuePort<T>: Port {
// Required methods
fn send(&mut self, value: T);
fn send_result(&mut self, value: Result<T, impl Display>);
}
Required Methods§
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.