pub trait CanReceive: Stream<Item = Result<Self::Frame, Self::Error>> + Sealed {
type Frame: Frame;
type Error;
}Available on crate feature
can only.Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".