pub enum SolveMode {
Real = 0,
Auto = 1,
Rational = 2,
}
Expand description
Enum representing the solve mode.
Variants§
Real = 0
Solve with real values.
Auto = 1
Automatically determine the solve mode.
Rational = 2
Solve with rational values.
Trait Implementations§
impl Copy for SolveMode
impl Eq for SolveMode
impl StructuralPartialEq for SolveMode
Auto Trait Implementations§
impl Freeze for SolveMode
impl RefUnwindSafe for SolveMode
impl Send for SolveMode
impl Sync for SolveMode
impl Unpin for SolveMode
impl UnwindSafe for SolveMode
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