Enum rustfbp::component::OutputPortError [] [src]

pub enum OutputPortError<T> {
    NotConnected,
    CannotSend(SendError<T>),
}

Error for the OutputSender.

It says if the output port is not connected, or a classical SendError message.

Variants

NotConnectedCannotSend(SendError<T>)