pub enum Option {
Show 15 variants
DiagnosticOutputChannel(String),
GlobalDeclarations(BValue),
InteractiveMode(BValue),
PrintSuccess(BValue),
ProduceAssertions(BValue),
ProduceAssignments(BValue),
ProduceModels(BValue),
ProduceProofs(BValue),
ProduceUnsatAssumptions(BValue),
ProduceUnsatCores(BValue),
RandomSeed(Numeral),
RegularOutputChannel(String),
ReproducibleResourceLimit(Numeral),
Verbosity(Numeral),
Attribute(Attribute),
}Variants§
DiagnosticOutputChannel(String)
:diagnostic-output-channel <string>
GlobalDeclarations(BValue)
:global-declarations <b_value>
InteractiveMode(BValue)
:interactive-mode <b_value>
PrintSuccess(BValue)
:print-success <b_value>
ProduceAssertions(BValue)
:produce-assertions <b_value>
ProduceAssignments(BValue)
:produce-assignments <b_value>
ProduceModels(BValue)
:produce-models <b_value>
ProduceProofs(BValue)
:produce-proofs <b_value>
ProduceUnsatAssumptions(BValue)
:produce-unsat-assumptions <b_value>
ProduceUnsatCores(BValue)
:produce-unsat-cores <b_value>
RandomSeed(Numeral)
:random-seed <numeral>
RegularOutputChannel(String)
:regular-output-channel <string>
ReproducibleResourceLimit(Numeral)
:reproducible-resource-limit <numeral>
Verbosity(Numeral)
:verbosity <numeral>
Attribute(Attribute)
<attribute>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Option
impl<'de> Deserialize<'de> for Option
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
impl Eq for Option
impl StructuralPartialEq for Option
Auto Trait Implementations§
impl Freeze for Option
impl RefUnwindSafe for Option
impl Send for Option
impl Sync for Option
impl Unpin for Option
impl UnwindSafe for Option
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