Trait ValuePort

Source
pub trait ValuePort<T>: Port {
    // Required methods
    fn send(&mut self, value: T);
    fn send_result(&mut self, value: Result<T, impl Display>);
}
Expand description

Required Methods§

Source

fn send(&mut self, value: T)

Source

fn send_result(&mut self, value: Result<T, impl Display>)

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.

Implementors§