pub enum InstantiationType {
Solution,
Optimum,
}Expand description
The type of instantiation
Variants§
Solution
A solution that satisfies all constraints
Optimum
A solution that satisfies all constraints and is optimal with regards to the objective function(s)
Trait Implementations§
Source§impl Clone for InstantiationType
impl Clone for InstantiationType
Source§fn clone(&self) -> InstantiationType
fn clone(&self) -> InstantiationType
Returns a duplicate of the value. Read more
1.0.0 · 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 InstantiationType
impl Debug for InstantiationType
Source§impl<'de> Deserialize<'de> for InstantiationType
impl<'de> Deserialize<'de> for InstantiationType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for InstantiationType
impl Hash for InstantiationType
Source§impl PartialEq for InstantiationType
impl PartialEq for InstantiationType
Source§impl Serialize for InstantiationType
impl Serialize for InstantiationType
impl StructuralPartialEq for InstantiationType
Auto Trait Implementations§
impl Freeze for InstantiationType
impl RefUnwindSafe for InstantiationType
impl Send for InstantiationType
impl Sync for InstantiationType
impl Unpin for InstantiationType
impl UnwindSafe for InstantiationType
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