pub struct UniversalOptions {
pub time_limit: Option<Duration>,
pub threads: Option<u32>,
pub verbose: Option<bool>,
}Expand description
Options valid for every solver, including NLP backends.
Each backend’s options struct embeds this via HasUniversal; the
UniversalOptionsExt blanket impl then provides typed builder setters.
Fields§
§time_limit: Option<Duration>§threads: Option<u32>§verbose: Option<bool>Trait Implementations§
Source§impl Clone for UniversalOptions
impl Clone for UniversalOptions
Source§fn clone(&self) -> UniversalOptions
fn clone(&self) -> UniversalOptions
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 UniversalOptions
impl Debug for UniversalOptions
Source§impl Default for UniversalOptions
impl Default for UniversalOptions
Source§fn default() -> UniversalOptions
fn default() -> UniversalOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for UniversalOptions
impl PartialEq for UniversalOptions
Source§fn eq(&self, other: &UniversalOptions) -> bool
fn eq(&self, other: &UniversalOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UniversalOptions
Auto Trait Implementations§
impl Freeze for UniversalOptions
impl RefUnwindSafe for UniversalOptions
impl Send for UniversalOptions
impl Sync for UniversalOptions
impl Unpin for UniversalOptions
impl UnsafeUnpin for UniversalOptions
impl UnwindSafe for UniversalOptions
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