pub enum SinkWriteOperation {
Chunk,
Line,
LineDelimiter,
}Expand description
The write operation that failed while forwarding collected output into an async writer.
Variants§
Chunk
A raw output chunk failed to write.
Line
Parsed line bytes failed to write.
LineDelimiter
The line delimiter requested by crate::LineWriteMode::AppendLf failed to write.
Trait Implementations§
Source§impl Clone for SinkWriteOperation
impl Clone for SinkWriteOperation
Source§fn clone(&self) -> SinkWriteOperation
fn clone(&self) -> SinkWriteOperation
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 SinkWriteOperation
impl Debug for SinkWriteOperation
Source§impl PartialEq for SinkWriteOperation
impl PartialEq for SinkWriteOperation
impl Copy for SinkWriteOperation
impl Eq for SinkWriteOperation
impl StructuralPartialEq for SinkWriteOperation
Auto Trait Implementations§
impl Freeze for SinkWriteOperation
impl RefUnwindSafe for SinkWriteOperation
impl Send for SinkWriteOperation
impl Sync for SinkWriteOperation
impl Unpin for SinkWriteOperation
impl UnsafeUnpin for SinkWriteOperation
impl UnwindSafe for SinkWriteOperation
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