pub struct GamsConopt3Options {
pub raw: Vec<String>,
/* private fields */
}Expand description
Options for GAMS/CONOPT3. Reference: https://www.gams.com/latest/docs/S_CONOPT3.html
Fields§
§raw: Vec<String>Extra option-file lines written verbatim, for options without a generated setter (or values a setter can’t express).
Implementations§
Source§impl GamsConopt3Options
impl GamsConopt3Options
Sourcepub fn pretri2log(self, v: bool) -> Self
pub fn pretri2log(self, v: bool) -> Self
Set GAMS option pretri2log (boolean, written as 1/0).
Trait Implementations§
Source§impl Clone for GamsConopt3Options
impl Clone for GamsConopt3Options
Source§fn clone(&self) -> GamsConopt3Options
fn clone(&self) -> GamsConopt3Options
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 moreSource§impl Debug for GamsConopt3Options
impl Debug for GamsConopt3Options
Source§impl Default for GamsConopt3Options
impl Default for GamsConopt3Options
Source§fn default() -> GamsConopt3Options
fn default() -> GamsConopt3Options
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GamsConopt3Options
impl RefUnwindSafe for GamsConopt3Options
impl Send for GamsConopt3Options
impl Sync for GamsConopt3Options
impl Unpin for GamsConopt3Options
impl UnsafeUnpin for GamsConopt3Options
impl UnwindSafe for GamsConopt3Options
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