pub enum EdgeFeatureKind {
Chamfer,
Fillet,
}Expand description
Which feature an EdgeFeature node applies to its edges.
Variants§
Implementations§
Source§impl EdgeFeatureKind
impl EdgeFeatureKind
pub fn display_name(self) -> &'static str
Trait Implementations§
Source§impl Clone for EdgeFeatureKind
impl Clone for EdgeFeatureKind
Source§fn clone(&self) -> EdgeFeatureKind
fn clone(&self) -> EdgeFeatureKind
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 EdgeFeatureKind
impl Debug for EdgeFeatureKind
Source§impl<'de> Deserialize<'de> for EdgeFeatureKind
impl<'de> Deserialize<'de> for EdgeFeatureKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for EdgeFeatureKind
impl Hash for EdgeFeatureKind
Source§impl Ord for EdgeFeatureKind
impl Ord for EdgeFeatureKind
Source§fn cmp(&self, other: &EdgeFeatureKind) -> Ordering
fn cmp(&self, other: &EdgeFeatureKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EdgeFeatureKind
impl PartialEq for EdgeFeatureKind
Source§fn eq(&self, other: &EdgeFeatureKind) -> bool
fn eq(&self, other: &EdgeFeatureKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for EdgeFeatureKind
impl PartialOrd for EdgeFeatureKind
Source§impl Serialize for EdgeFeatureKind
impl Serialize for EdgeFeatureKind
impl Copy for EdgeFeatureKind
impl Eq for EdgeFeatureKind
impl StructuralPartialEq for EdgeFeatureKind
Auto Trait Implementations§
impl Freeze for EdgeFeatureKind
impl RefUnwindSafe for EdgeFeatureKind
impl Send for EdgeFeatureKind
impl Sync for EdgeFeatureKind
impl Unpin for EdgeFeatureKind
impl UnsafeUnpin for EdgeFeatureKind
impl UnwindSafe for EdgeFeatureKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more