pub enum SendError {
SerializationError,
IOError,
TimestampError,
Closed,
}Expand description
Error raised when something went wrong while sending on a WriteStream.
Variants§
SerializationError
Message serialization failed.
IOError
There was a network or a mpsc::channel error.
TimestampError
Timestamp or watermark is smaller or equal to the low watermark.
Closed
Stream is closed and can no longer send messages.
Trait Implementations§
impl StructuralPartialEq for SendError
Auto Trait Implementations§
impl Freeze for SendError
impl RefUnwindSafe for SendError
impl Send for SendError
impl Sync for SendError
impl Unpin for SendError
impl UnwindSafe for SendError
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