pub struct FileCapacityError<'bytes>(/* private fields */);
Expand description
File is at chunk capacity.
Implementations§
Source§impl<'bytes> CapacityError<'bytes>
impl<'bytes> CapacityError<'bytes>
pub fn into_element(self) -> Chunk<'bytes>
Trait Implementations§
Source§impl Debug for CapacityError<'_>
impl Debug for CapacityError<'_>
Source§impl Display for CapacityError<'_>
impl Display for CapacityError<'_>
Source§impl Error for CapacityError<'_>
impl Error for CapacityError<'_>
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<'bytes> Freeze for CapacityError<'bytes>
impl<'bytes> RefUnwindSafe for CapacityError<'bytes>
impl<'bytes> Send for CapacityError<'bytes>
impl<'bytes> Sync for CapacityError<'bytes>
impl<'bytes> Unpin for CapacityError<'bytes>
impl<'bytes> UnwindSafe for CapacityError<'bytes>
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