pub struct WriteTooLarge;Expand description
Error returned when a write is larger than the buffer capacity.
Trait Implementations§
Source§impl Debug for WriteTooLarge
impl Debug for WriteTooLarge
Source§impl Display for WriteTooLarge
impl Display for WriteTooLarge
Source§impl Error for WriteTooLarge
impl Error for WriteTooLarge
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()
Source§impl PartialEq for WriteTooLarge
impl PartialEq for WriteTooLarge
Source§fn eq(&self, other: &WriteTooLarge) -> bool
fn eq(&self, other: &WriteTooLarge) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WriteTooLarge
Auto Trait Implementations§
impl Freeze for WriteTooLarge
impl RefUnwindSafe for WriteTooLarge
impl Send for WriteTooLarge
impl Sync for WriteTooLarge
impl Unpin for WriteTooLarge
impl UnsafeUnpin for WriteTooLarge
impl UnwindSafe for WriteTooLarge
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