pub enum Error {
InvalidVersion(u8),
TooManyMethods,
InvalidHandshake,
InvalidCommand(u8),
InvalidCommandReply(u8),
CommandReply(CommandReply),
DomainTooLong(usize),
InvalidDomain(Vec<u8>),
InvalidAddressType(u8),
Io(Error),
}Expand description
Library level Error.
Variants§
InvalidVersion(u8)
Invalid version.
TooManyMethods
Too many methods. Max to 255.
InvalidHandshake
Invalid handshake.
InvalidCommand(u8)
Invalid command.
InvalidCommandReply(u8)
Invalid command reply.
CommandReply(CommandReply)
Invalid command reply with error.
DomainTooLong(usize)
Domain too long.
InvalidDomain(Vec<u8>)
Invalid domain.
InvalidAddressType(u8)
Invalid address type.
Io(Error)
IO error.
Implementations§
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more