pub enum RotOrder {
Hyperbola(u128),
Ellipse(u128),
Parabola,
}
Expand description
The order of a rotation map, along with which type of conic it is.
Variants§
Hyperbola(u128)
An orbit of order dividing $p - 1$ (and not equal to 2).
Ellipse(u128)
An orbit of order dividing $p + 1$ (and not equal to 2).
Parabola
An orbit of order exactly 1 or 2.
Trait Implementations§
source§impl PartialEq<RotOrder> for RotOrder
impl PartialEq<RotOrder> for RotOrder
impl Eq for RotOrder
impl StructuralEq for RotOrder
impl StructuralPartialEq for RotOrder
Auto Trait Implementations§
impl RefUnwindSafe for RotOrder
impl Send for RotOrder
impl Sync for RotOrder
impl Unpin for RotOrder
impl UnwindSafe for RotOrder
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