pub enum Cplex {
Unbounded {
code: c_int,
message: String,
},
Unfeasible {
code: c_int,
message: String,
},
Other {
code: c_int,
message: String,
},
}Variants§
Trait Implementations§
Source§impl Error for Cplex
impl Error for Cplex
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for Cplex
impl RefUnwindSafe for Cplex
impl Send for Cplex
impl Sync for Cplex
impl Unpin for Cplex
impl UnsafeUnpin for Cplex
impl UnwindSafe for Cplex
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