#[non_exhaustive]pub enum CornerRule {
OpenSubdivDeRose,
}Expand description
Rule for sharp/crease/corner vertices. Currently only the OpenSubdiv/DeRose rule-transition behavior is available.
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.
OpenSubdivDeRose
OpenSubdiv / DeRose rule-transition behavior.
Trait Implementations§
Source§impl Clone for CornerRule
impl Clone for CornerRule
Source§fn clone(&self) -> CornerRule
fn clone(&self) -> CornerRule
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 moreimpl Copy for CornerRule
Source§impl Debug for CornerRule
impl Debug for CornerRule
Source§impl Default for CornerRule
impl Default for CornerRule
Source§fn default() -> CornerRule
fn default() -> CornerRule
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CornerRule
impl<'de> Deserialize<'de> for CornerRule
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
impl Eq for CornerRule
Source§impl Hash for CornerRule
impl Hash for CornerRule
Source§impl PartialEq for CornerRule
impl PartialEq for CornerRule
Source§fn eq(&self, other: &CornerRule) -> bool
fn eq(&self, other: &CornerRule) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CornerRule
impl Serialize for CornerRule
impl StructuralPartialEq for CornerRule
Auto Trait Implementations§
impl Freeze for CornerRule
impl RefUnwindSafe for CornerRule
impl Send for CornerRule
impl Sync for CornerRule
impl Unpin for CornerRule
impl UnsafeUnpin for CornerRule
impl UnwindSafe for CornerRule
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> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.