pub enum DatagramChunkerError {
ItemSizeTooBig,
IoError(Error),
}
Expand description
Represents errors that can occur while chunking datagrams.
Variants§
ItemSizeTooBig
The size of the item exceeds the maximum allowed datagram size.
IoError(Error)
An I/O error occurred.
Trait Implementations§
Source§impl Debug for DatagramChunkerError
impl Debug for DatagramChunkerError
Source§impl ErrorLevelProvider for DatagramChunkerError
impl ErrorLevelProvider for DatagramChunkerError
fn error_level(&self) -> ErrorLevel
Auto Trait Implementations§
impl Freeze for DatagramChunkerError
impl !RefUnwindSafe for DatagramChunkerError
impl Send for DatagramChunkerError
impl Sync for DatagramChunkerError
impl Unpin for DatagramChunkerError
impl !UnwindSafe for DatagramChunkerError
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