#[non_exhaustive]#[repr(i32)]pub enum GroupType {
Invalid = -1,
Point = 0,
Prim = 1,
Edge = 2,
Max = 3,
}
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.
Trait Implementations§
impl Copy for GroupType
impl Eq for GroupType
impl StructuralPartialEq for GroupType
Auto Trait Implementations§
impl Freeze for GroupType
impl RefUnwindSafe for GroupType
impl Send for GroupType
impl Sync for GroupType
impl Unpin for GroupType
impl UnwindSafe for GroupType
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