Enum etk_asm::ops::Abstract

source ·
pub enum Abstract {}
Expand description

Marker type for instructions which may accept labels, variables, or constants as arguments.

Trait Implementations§

source§

impl Clone for Abstract

source§

fn clone(&self) -> Abstract

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Abstract

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Immediates for Abstract

§

type ImmediateRef = Imm

A reference type common to all immediate types (Self::P1, Self::P2, …) Read more
§

type Immediate = Imm

A common type that all immediates (Self::P1, Self::P2, …) can be converted into. Read more
§

type P1 = Imm

The type of immediates used by push1 instructions.
§

type P2 = Imm

The type of immediates used by push2 instructions.
§

type P3 = Imm

The type of immediates used by push3 instructions.
§

type P4 = Imm

The type of immediates used by push4 instructions.
§

type P5 = Imm

The type of immediates used by push5 instructions.
§

type P6 = Imm

The type of immediates used by push6 instructions.
§

type P7 = Imm

The type of immediates used by push7 instructions.
§

type P8 = Imm

The type of immediates used by push8 instructions.
§

type P9 = Imm

The type of immediates used by push9 instructions.
§

type P10 = Imm

The type of immediates used by push10 instructions.
§

type P11 = Imm

The type of immediates used by push11 instructions.
§

type P12 = Imm

The type of immediates used by push12 instructions.
§

type P13 = Imm

The type of immediates used by push13 instructions.
§

type P14 = Imm

The type of immediates used by push14 instructions.
§

type P15 = Imm

The type of immediates used by push15 instructions.
§

type P16 = Imm

The type of immediates used by push16 instructions.
§

type P17 = Imm

The type of immediates used by push17 instructions.
§

type P18 = Imm

The type of immediates used by push18 instructions.
§

type P19 = Imm

The type of immediates used by push19 instructions.
§

type P20 = Imm

The type of immediates used by push20 instructions.
§

type P21 = Imm

The type of immediates used by push21 instructions.
§

type P22 = Imm

The type of immediates used by push22 instructions.
§

type P23 = Imm

The type of immediates used by push23 instructions.
§

type P24 = Imm

The type of immediates used by push24 instructions.
§

type P25 = Imm

The type of immediates used by push25 instructions.
§

type P26 = Imm

The type of immediates used by push26 instructions.
§

type P27 = Imm

The type of immediates used by push27 instructions.
§

type P28 = Imm

The type of immediates used by push28 instructions.
§

type P29 = Imm

The type of immediates used by push29 instructions.
§

type P30 = Imm

The type of immediates used by push30 instructions.
§

type P31 = Imm

The type of immediates used by push31 instructions.
§

type P32 = Imm

The type of immediates used by push32 instructions.
source§

impl PartialEq<Abstract> for Abstract

source§

fn eq(&self, other: &Abstract) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Abstract

source§

impl StructuralEq for Abstract

source§

impl StructuralPartialEq for Abstract

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V