Enum solana_streamer::streamer::StreamerError
source · pub enum StreamerError {
Io(Error),
RecvTimeout(RecvTimeoutError),
Send(SendError<PacketBatch>),
SendPktsError(SendPktsError),
}
Variants§
Trait Implementations§
source§impl Debug for StreamerError
impl Debug for StreamerError
source§impl Display for StreamerError
impl Display for StreamerError
source§impl Error for StreamerError
impl Error for StreamerError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<Error> for StreamerError
impl From<Error> for StreamerError
source§impl From<RecvTimeoutError> for StreamerError
impl From<RecvTimeoutError> for StreamerError
source§fn from(source: RecvTimeoutError) -> Self
fn from(source: RecvTimeoutError) -> Self
Converts to this type from the input type.
source§impl From<SendError<PacketBatch>> for StreamerError
impl From<SendError<PacketBatch>> for StreamerError
source§fn from(source: SendError<PacketBatch>) -> Self
fn from(source: SendError<PacketBatch>) -> Self
Converts to this type from the input type.
source§impl From<SendPktsError> for StreamerError
impl From<SendPktsError> for StreamerError
source§fn from(source: SendPktsError) -> Self
fn from(source: SendPktsError) -> Self
Converts to this type from the input type.