pub enum ProtocolError {
BufferExhausted,
BadIdentificationString,
BadStringEncoding,
BadNameList,
BadStringLength,
TrailingPayload,
MalformedPacket,
WindowOverflow,
}Expand description
Set of possible protocol errors.
Variants§
BufferExhausted
The packet buffer was too small to hold a packet.
BadIdentificationString
The client sent an invalid identification string.
BadStringEncoding
A string was not supplied in the required encoding.
BadNameList
A name list was found to contain an invalid name.
BadStringLength
A string had a length different than was expected.
TrailingPayload
There were some bytes left after object decoding.
MalformedPacket
A malformed client packet was seen by the server.
WindowOverflow
The channel’s window overflowed during transfer.
Trait Implementations§
Source§impl Clone for ProtocolError
impl Clone for ProtocolError
Source§fn clone(&self) -> ProtocolError
fn clone(&self) -> ProtocolError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProtocolError
impl Debug for ProtocolError
Source§impl<E> From<ProtocolError> for Error<E>
impl<E> From<ProtocolError> for Error<E>
Source§fn from(value: ProtocolError) -> Self
fn from(value: ProtocolError) -> Self
Converts to this type from the input type.
Source§impl From<Utf8Error> for ProtocolError
impl From<Utf8Error> for ProtocolError
Source§impl PartialEq for ProtocolError
impl PartialEq for ProtocolError
impl Copy for ProtocolError
impl Eq for ProtocolError
impl StructuralPartialEq 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