pub enum StabilityType {
StableNode,
UnstableNode,
Saddle,
StableSpiral,
UnstableSpiral,
Center,
Degenerate,
}Expand description
Classification of a 2-D equilibrium point.
Variants§
StableNode
Real negative eigenvalues: stable node
UnstableNode
Real positive eigenvalues: unstable node
Saddle
Real eigenvalues of opposite sign: saddle
StableSpiral
Complex eigenvalues with negative real part: stable spiral
UnstableSpiral
Complex eigenvalues with positive real part: unstable spiral
Center
Pure imaginary eigenvalues: center
Degenerate
Degenerate (zero eigenvalue)
Trait Implementations§
Source§impl Clone for StabilityType
impl Clone for StabilityType
Source§fn clone(&self) -> StabilityType
fn clone(&self) -> StabilityType
Returns a duplicate of the value. Read more
1.0.0 · 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 StabilityType
impl Debug for StabilityType
Source§impl PartialEq for StabilityType
impl PartialEq for StabilityType
impl StructuralPartialEq for StabilityType
Auto Trait Implementations§
impl Freeze for StabilityType
impl RefUnwindSafe for StabilityType
impl Send for StabilityType
impl Sync for StabilityType
impl Unpin for StabilityType
impl UnsafeUnpin for StabilityType
impl UnwindSafe for StabilityType
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