pub struct SliceSizeOverflowError;
Expand description
The error type returned when a type is transmuted into a byte slice and the multiple of the
slice’s length and the type’s size overflows isize
.
Trait Implementations§
Source§impl Clone for SliceSizeOverflowError
impl Clone for SliceSizeOverflowError
Source§fn clone(&self) -> SliceSizeOverflowError
fn clone(&self) -> SliceSizeOverflowError
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 SliceSizeOverflowError
impl Debug for SliceSizeOverflowError
Source§impl Display for SliceSizeOverflowError
impl Display for SliceSizeOverflowError
impl Copy for SliceSizeOverflowError
Auto Trait Implementations§
impl Freeze for SliceSizeOverflowError
impl RefUnwindSafe for SliceSizeOverflowError
impl Send for SliceSizeOverflowError
impl Sync for SliceSizeOverflowError
impl Unpin for SliceSizeOverflowError
impl UnwindSafe for SliceSizeOverflowError
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