pub enum IntersectionKind {
StructuralZero,
GeometricZero,
Positive,
Underdetermined,
}Expand description
Classification of an intersection result.
StructuralZero: total codimension exceeds Grassmannian dimensionGeometricZero: correctly dimensioned but no intersection pointsPositive: nonempty intersection with known multiplicityUnderdetermined: the computation could not resolve the result
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for IntersectionKind
impl Clone for IntersectionKind
Source§fn clone(&self) -> IntersectionKind
fn clone(&self) -> IntersectionKind
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 IntersectionKind
Source§impl Debug for IntersectionKind
impl Debug for IntersectionKind
impl Eq for IntersectionKind
Source§impl PartialEq for IntersectionKind
impl PartialEq for IntersectionKind
Source§fn eq(&self, other: &IntersectionKind) -> bool
fn eq(&self, other: &IntersectionKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IntersectionKind
Auto Trait Implementations§
impl Freeze for IntersectionKind
impl RefUnwindSafe for IntersectionKind
impl Send for IntersectionKind
impl Sync for IntersectionKind
impl Unpin for IntersectionKind
impl UnsafeUnpin for IntersectionKind
impl UnwindSafe for IntersectionKind
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