pub enum WriteError {
ChannelFull,
NoSpaceForRecord,
EncodingError(Error),
}
Expand description
Write operation errors
Variants§
ChannelFull
There is not enough space available in the channel for any write. The channel is full.
NoSpaceForRecord
The record was larger than the maximum allowed size or the maximum available space.
EncodingError(Error)
The encoding operation had failed
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WriteError
impl !RefUnwindSafe for WriteError
impl Send for WriteError
impl Sync for WriteError
impl Unpin for WriteError
impl !UnwindSafe for WriteError
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