pub enum GamsSnoptQpsolver {
Cholesky,
Qn,
Cg,
}Expand description
Allowed values for GAMS option qpsolver.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for GamsSnoptQpsolver
impl Clone for GamsSnoptQpsolver
Source§fn clone(&self) -> GamsSnoptQpsolver
fn clone(&self) -> GamsSnoptQpsolver
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 GamsSnoptQpsolver
Source§impl Debug for GamsSnoptQpsolver
impl Debug for GamsSnoptQpsolver
impl Eq for GamsSnoptQpsolver
Source§impl PartialEq for GamsSnoptQpsolver
impl PartialEq for GamsSnoptQpsolver
impl StructuralPartialEq for GamsSnoptQpsolver
Auto Trait Implementations§
impl Freeze for GamsSnoptQpsolver
impl RefUnwindSafe for GamsSnoptQpsolver
impl Send for GamsSnoptQpsolver
impl Sync for GamsSnoptQpsolver
impl Unpin for GamsSnoptQpsolver
impl UnsafeUnpin for GamsSnoptQpsolver
impl UnwindSafe for GamsSnoptQpsolver
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more