#[repr(u32)]pub enum OPclass {
Show 14 variants
OPclass_NULL = 0,
OPclass_BASEOP = 1,
OPclass_UNOP = 2,
OPclass_BINOP = 3,
OPclass_LOGOP = 4,
OPclass_LISTOP = 5,
OPclass_PMOP = 6,
OPclass_SVOP = 7,
OPclass_PADOP = 8,
OPclass_PVOP = 9,
OPclass_LOOP = 10,
OPclass_COP = 11,
OPclass_METHOP = 12,
OPclass_UNOP_AUX = 13,
}
Variants§
OPclass_NULL = 0
OPclass_BASEOP = 1
OPclass_UNOP = 2
OPclass_BINOP = 3
OPclass_LOGOP = 4
OPclass_LISTOP = 5
OPclass_PMOP = 6
OPclass_SVOP = 7
OPclass_PADOP = 8
OPclass_PVOP = 9
OPclass_LOOP = 10
OPclass_COP = 11
OPclass_METHOP = 12
OPclass_UNOP_AUX = 13
Trait Implementations§
impl Copy for OPclass
impl Eq for OPclass
impl StructuralPartialEq for OPclass
Auto Trait Implementations§
impl Freeze for OPclass
impl RefUnwindSafe for OPclass
impl Send for OPclass
impl Sync for OPclass
impl Unpin for OPclass
impl UnwindSafe for OPclass
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