pub struct GmsSolveDirective {
pub model_name: String,
pub model_type: String,
pub direction: Option<String>,
pub objective_var: Option<String>,
}Expand description
Parsed Solve <model> using <TYPE> [minimizing|maximizing] <objvar>; line.
Fields§
§model_name: String§model_type: String§direction: Option<String>§objective_var: Option<String>Trait Implementations§
Source§impl Clone for GmsSolveDirective
impl Clone for GmsSolveDirective
Source§fn clone(&self) -> GmsSolveDirective
fn clone(&self) -> GmsSolveDirective
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 GmsSolveDirective
impl Debug for GmsSolveDirective
Auto Trait Implementations§
impl Freeze for GmsSolveDirective
impl RefUnwindSafe for GmsSolveDirective
impl Send for GmsSolveDirective
impl Sync for GmsSolveDirective
impl Unpin for GmsSolveDirective
impl UnsafeUnpin for GmsSolveDirective
impl UnwindSafe for GmsSolveDirective
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