pub enum ProtocolError {
UnknownPacket = 0,
UnexpectedPacket = 1,
Unimplemented = 2,
AccessDenied = 3,
Disabled = 4,
FailedToCreateListener = 5,
FailedToRetrievePort = 6,
AlreadyCreated = 7,
ServerIsNotCreated = 8,
ClientDoesNotExists = 9,
DecompressionFailed = 10,
ServerWasShutDown = 11,
}
Variants§
UnknownPacket = 0
UnexpectedPacket = 1
Unimplemented = 2
AccessDenied = 3
Disabled = 4
FailedToCreateListener = 5
FailedToRetrievePort = 6
AlreadyCreated = 7
ServerIsNotCreated = 8
ClientDoesNotExists = 9
DecompressionFailed = 10
ServerWasShutDown = 11
Trait Implementations§
Source§impl Clone for ProtocolError
impl Clone for ProtocolError
Source§impl Debug for ProtocolError
impl Debug for ProtocolError
Source§impl Display for ProtocolError
impl Display for ProtocolError
Source§impl Error for ProtocolError
impl Error for ProtocolError
1.30.0 · 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()
Source§impl Ord for ProtocolError
impl Ord for ProtocolError
Source§impl PartialEq for ProtocolError
impl PartialEq for ProtocolError
Source§impl PartialOrd for ProtocolError
impl PartialOrd for ProtocolError
Source§impl TryFrom<u8> for ProtocolError
impl TryFrom<u8> for ProtocolError
impl Copy for ProtocolError
impl Eq for ProtocolError
Auto Trait Implementations§
impl Freeze for ProtocolError
impl RefUnwindSafe for ProtocolError
impl Send for ProtocolError
impl Sync for ProtocolError
impl Unpin for ProtocolError
impl UnwindSafe for ProtocolError
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