#[non_exhaustive]#[repr(i32)]pub enum AttributeOwner {
Invalid = -1,
Vertex = 0,
Point = 1,
Prim = 2,
Detail = 3,
Max = 4,
}
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§
Source§impl Clone for AttributeOwner
impl Clone for AttributeOwner
Source§fn clone(&self) -> AttributeOwner
fn clone(&self) -> AttributeOwner
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AttributeOwner
impl Debug for AttributeOwner
Source§impl Hash for AttributeOwner
impl Hash for AttributeOwner
Source§impl PartialEq for AttributeOwner
impl PartialEq for AttributeOwner
impl Copy for AttributeOwner
impl Eq for AttributeOwner
impl StructuralPartialEq for AttributeOwner
Auto Trait Implementations§
impl Freeze for AttributeOwner
impl RefUnwindSafe for AttributeOwner
impl Send for AttributeOwner
impl Sync for AttributeOwner
impl Unpin for AttributeOwner
impl UnwindSafe for AttributeOwner
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