#[repr(i32)]pub enum MatrixAddressingMode {
Linear = 0,
NonLinear = 1,
}Expand description
Matrix addressing mode.
Variants§
Trait Implementations§
Source§impl Clone for MatrixAddressingMode
impl Clone for MatrixAddressingMode
Source§fn clone(&self) -> MatrixAddressingMode
fn clone(&self) -> MatrixAddressingMode
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 MatrixAddressingMode
impl Debug for MatrixAddressingMode
Source§impl Default for MatrixAddressingMode
impl Default for MatrixAddressingMode
Source§fn default() -> MatrixAddressingMode
fn default() -> MatrixAddressingMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for MatrixAddressingMode
impl PartialEq for MatrixAddressingMode
Source§impl TryFrom<i64> for MatrixAddressingMode
impl TryFrom<i64> for MatrixAddressingMode
impl Copy for MatrixAddressingMode
impl Eq for MatrixAddressingMode
impl StructuralPartialEq for MatrixAddressingMode
Auto Trait Implementations§
impl Freeze for MatrixAddressingMode
impl RefUnwindSafe for MatrixAddressingMode
impl Send for MatrixAddressingMode
impl Sync for MatrixAddressingMode
impl Unpin for MatrixAddressingMode
impl UnsafeUnpin for MatrixAddressingMode
impl UnwindSafe for MatrixAddressingMode
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