pub struct CowSliceSizeMismatchError(usize, usize);
Expand description
Error returned when the sizes of the immutable and mutable buffers
mismatch when constructing a CowSlice
.
Tuple Fields§
§0: usize
§1: usize
Trait Implementations§
Source§impl Clone for CowSliceSizeMismatchError
impl Clone for CowSliceSizeMismatchError
Source§fn clone(&self) -> CowSliceSizeMismatchError
fn clone(&self) -> CowSliceSizeMismatchError
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 CowSliceSizeMismatchError
impl Debug for CowSliceSizeMismatchError
Auto Trait Implementations§
impl Freeze for CowSliceSizeMismatchError
impl RefUnwindSafe for CowSliceSizeMismatchError
impl Send for CowSliceSizeMismatchError
impl Sync for CowSliceSizeMismatchError
impl Unpin for CowSliceSizeMismatchError
impl UnwindSafe for CowSliceSizeMismatchError
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