pub enum Error {
Again,
Msg(String),
}Expand description
A basic error type from this library.
Variants
Again
Like a classic EAGAIN. The receiver should retry.
Msg(String)
Tuple Fields
0: StringA generic error message.
pub enum Error {
Again,
Msg(String),
}A basic error type from this library.
AgainLike a classic EAGAIN. The receiver should retry.
Msg(String)0: StringA generic error message.