pub trait SocketInput:
Unpin
+ Debug
+ Sized{ }Expand description
Trait expressing the requirements for a socket input type
You don’t need to implement it directly, there is a blanked implementation for types that implement
Unpin, Debug, <Message as TryFrom<Self>>
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.