#[non_exhaustive]#[repr(i32)]pub enum NodeFlags {
Show 17 variants
Any = -1,
None = 0,
Display = 1,
Render = 2,
Templated = 4,
Locked = 8,
Editable = 16,
Bypass = 32,
Network = 64,
Geometry = 128,
Camera = 256,
Light = 512,
Subnet = 1_024,
Curve = 2_048,
Guide = 4_096,
Nonscheduler = 8_192,
NonBypass = 16_384,
}
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
Display = 1
Render = 2
Templated = 4
Locked = 8
Editable = 16
Bypass = 32
Network = 64
Geometry = 128
Camera = 256
Light = 512
Subnet = 1_024
Curve = 2_048
Guide = 4_096
Nonscheduler = 8_192
NonBypass = 16_384
Trait Implementations§
impl Copy for NodeFlags
impl Eq for NodeFlags
impl StructuralPartialEq for NodeFlags
Auto Trait Implementations§
impl Freeze for NodeFlags
impl RefUnwindSafe for NodeFlags
impl Send for NodeFlags
impl Sync for NodeFlags
impl Unpin for NodeFlags
impl UnwindSafe for NodeFlags
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