#[repr(i32)]pub enum PointsClassification {
Disconnected = 0,
OpenPath = 1,
ClosedPath = 2,
}Expand description
Mirrors VNPointsClassification.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PointsClassification
impl Clone for PointsClassification
Source§fn clone(&self) -> PointsClassification
fn clone(&self) -> PointsClassification
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PointsClassification
impl Debug for PointsClassification
Source§impl Hash for PointsClassification
impl Hash for PointsClassification
Source§impl PartialEq for PointsClassification
impl PartialEq for PointsClassification
Source§fn eq(&self, other: &PointsClassification) -> bool
fn eq(&self, other: &PointsClassification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PointsClassification
impl Eq for PointsClassification
impl StructuralPartialEq for PointsClassification
Auto Trait Implementations§
impl Freeze for PointsClassification
impl RefUnwindSafe for PointsClassification
impl Send for PointsClassification
impl Sync for PointsClassification
impl Unpin for PointsClassification
impl UnsafeUnpin for PointsClassification
impl UnwindSafe for PointsClassification
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