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
Re-export of wick_packet::Base64Bytes as Bytes.
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.