pub enum AlignFromBytesError {
NotPowerOfTwo(u64),
TooLarge(u64),
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AlignFromBytesError
impl Clone for AlignFromBytesError
Source§fn clone(&self) -> AlignFromBytesError
fn clone(&self) -> AlignFromBytesError
Returns a copy 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 AlignFromBytesError
impl Debug for AlignFromBytesError
Source§impl Display for AlignFromBytesError
impl Display for AlignFromBytesError
impl Copy for AlignFromBytesError
Auto Trait Implementations§
impl Freeze for AlignFromBytesError
impl RefUnwindSafe for AlignFromBytesError
impl Send for AlignFromBytesError
impl Sync for AlignFromBytesError
impl Unpin for AlignFromBytesError
impl UnwindSafe for AlignFromBytesError
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