pub enum CodingWriteError<F, M, W> {
Fec(F),
Framer(M),
Writer(W),
BufferTooSmall,
}Expand description
Error from a coding write pipeline.
Variants§
Fec(F)
FEC encoding failed.
Framer(M)
Framing failed.
Writer(W)
Physical writer failed.
BufferTooSmall
Internal buffer too small.
Trait Implementations§
Source§impl<F: Error, M: Error, W: Error> Error for CodingWriteError<F, M, W>
impl<F: Error, M: Error, W: Error> Error for CodingWriteError<F, M, W>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<F, M, W> Freeze for CodingWriteError<F, M, W>
impl<F, M, W> RefUnwindSafe for CodingWriteError<F, M, W>
impl<F, M, W> Send for CodingWriteError<F, M, W>
impl<F, M, W> Sync for CodingWriteError<F, M, W>
impl<F, M, W> Unpin for CodingWriteError<F, M, W>
impl<F, M, W> UnsafeUnpin for CodingWriteError<F, M, W>
impl<F, M, W> UnwindSafe for CodingWriteError<F, M, W>
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