pub enum ResidualKind {
CoincidentVertices,
DuplicateEdge,
}Expand description
A single residual fusable — coincident geometry the assembler left unwelded.
Variants§
CoincidentVertices
Two distinct vertex records at (within tolerance) the same point.
DuplicateEdge
Two distinct edges tracing the same curve (coincident endpoints AND midpoint) that should be one shared edge.
Trait Implementations§
Source§impl Clone for ResidualKind
impl Clone for ResidualKind
Source§fn clone(&self) -> ResidualKind
fn clone(&self) -> ResidualKind
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 ResidualKind
Source§impl Debug for ResidualKind
impl Debug for ResidualKind
impl Eq for ResidualKind
Source§impl PartialEq for ResidualKind
impl PartialEq for ResidualKind
Source§impl Serialize for ResidualKind
impl Serialize for ResidualKind
impl StructuralPartialEq for ResidualKind
Auto Trait Implementations§
impl Freeze for ResidualKind
impl RefUnwindSafe for ResidualKind
impl Send for ResidualKind
impl Sync for ResidualKind
impl Unpin for ResidualKind
impl UnsafeUnpin for ResidualKind
impl UnwindSafe for ResidualKind
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.