pub enum TableInst {
NoOp,
Add {
size: u8,
},
Run,
Copy {
size: u8,
mode: u8,
},
}
Variants§
Implementations§
Trait Implementations§
impl Copy for TableInst
impl Eq for TableInst
impl StructuralPartialEq for TableInst
Auto Trait Implementations§
impl Freeze for TableInst
impl RefUnwindSafe for TableInst
impl Send for TableInst
impl Sync for TableInst
impl Unpin for TableInst
impl UnwindSafe for TableInst
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