Trait SocketOutput

Source
pub trait SocketOutput:
    Unpin
    + TryFrom<Message>
    + Debug
where <Self as TryFrom<Message>>::Error: Debug,
{ }
Expand description

Trait expressing the requirements for a socket output type You don’t need to implement it directly, there is a blanked implementation for types that implement Unpin, Debug, <Self as TryFrom<Message>>

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§