Enum naga::valid::Disalignment
source · 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)>
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