Skip to main content

LeafedInterfaceInstructions

Struct LeafedInterfaceInstructions 

Source
pub struct LeafedInterfaceInstructions<ConfigType, List: Copy> {
    pub instruction: ConfigType,
    pub list: List,
}
Expand description

One instruction paired with the leaf type list used for replay dispatch.

Fields§

§instruction: ConfigType

The instruction being replayed.

§list: List

Copy of the leaf type list carried through the iterator.

Auto Trait Implementations§

§

impl<ConfigType, List> Freeze for LeafedInterfaceInstructions<ConfigType, List>
where ConfigType: Freeze, List: Freeze,

§

impl<ConfigType, List> RefUnwindSafe for LeafedInterfaceInstructions<ConfigType, List>
where ConfigType: RefUnwindSafe, List: RefUnwindSafe,

§

impl<ConfigType, List> Send for LeafedInterfaceInstructions<ConfigType, List>
where ConfigType: Send, List: Send,

§

impl<ConfigType, List> Sync for LeafedInterfaceInstructions<ConfigType, List>
where ConfigType: Sync, List: Sync,

§

impl<ConfigType, List> Unpin for LeafedInterfaceInstructions<ConfigType, List>
where ConfigType: Unpin, List: Unpin,

§

impl<ConfigType, List> UnsafeUnpin for LeafedInterfaceInstructions<ConfigType, List>
where ConfigType: UnsafeUnpin, List: UnsafeUnpin,

§

impl<ConfigType, List> UnwindSafe for LeafedInterfaceInstructions<ConfigType, List>
where ConfigType: UnwindSafe, List: UnwindSafe,

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.