#[non_exhaustive]#[repr(i32)]pub enum NodeType {
Show 13 variants
Any = -1,
None = 0,
Obj = 1,
Sop = 2,
Chop = 4,
Rop = 8,
Shop = 16,
Cop2 = 32,
Vop = 64,
Dop = 128,
Top = 256,
Cop = 512,
Lop = 1_024,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Any = -1
None = 0
Obj = 1
Sop = 2
Chop = 4
Rop = 8
Shop = 16
Cop2 = 32
Vop = 64
Dop = 128
Top = 256
Cop = 512
Lop = 1_024
Trait Implementations§
Source§impl BitOr<NodeType> for NodeTypeBits
impl BitOr<NodeType> for NodeTypeBits
Source§impl From<ManagerType> for NodeType
impl From<ManagerType> for NodeType
Source§fn from(value: ManagerType) -> Self
fn from(value: ManagerType) -> Self
Converts to this type from the input type.
Source§impl ToNodeTypeBits for NodeType
impl ToNodeTypeBits for NodeType
fn to_bits(self) -> NodeTypeBits
impl Copy for NodeType
impl Eq for NodeType
impl StructuralPartialEq for NodeType
Auto Trait Implementations§
impl Freeze for NodeType
impl RefUnwindSafe for NodeType
impl Send for NodeType
impl Sync for NodeType
impl Unpin for NodeType
impl UnwindSafe for NodeType
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