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: ConfigTypeThe instruction being replayed.
list: ListCopy of the leaf type list carried through the iterator.
Auto Trait Implementations§
impl<ConfigType, List> Freeze for LeafedInterfaceInstructions<ConfigType, List>
impl<ConfigType, List> RefUnwindSafe for LeafedInterfaceInstructions<ConfigType, List>where
ConfigType: RefUnwindSafe,
List: RefUnwindSafe,
impl<ConfigType, List> Send for LeafedInterfaceInstructions<ConfigType, List>
impl<ConfigType, List> Sync for LeafedInterfaceInstructions<ConfigType, List>
impl<ConfigType, List> Unpin for LeafedInterfaceInstructions<ConfigType, List>
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> 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