pub enum Disalignment {
ArrayStride {
stride: u32,
alignment: Alignment,
},
StructSpan {
span: u32,
alignment: Alignment,
},
MemberOffset {
index: u32,
offset: u32,
alignment: Alignment,
},
MemberOffsetAfterStruct {
index: u32,
offset: u32,
expected: u32,
},
UnsizedMember {
index: u32,
},
NonHostShareable,
}
Variants§
Trait Implementations§
Source§impl Clone for Disalignment
impl Clone for Disalignment
Source§fn clone(&self) -> Disalignment
fn clone(&self) -> Disalignment
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 Disalignment
impl Debug for Disalignment
Source§impl Display for Disalignment
impl Display for Disalignment
Source§impl Error for Disalignment
impl Error for Disalignment
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()
impl Copy for Disalignment
Auto Trait Implementations§
impl Freeze for Disalignment
impl RefUnwindSafe for Disalignment
impl Send for Disalignment
impl Sync for Disalignment
impl Unpin for Disalignment
impl UnwindSafe for Disalignment
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)