pub enum SpecificSuccessResponse {
GetUnsatAssumptionsResponse(GetUnsatAssumptionsResponse),
CheckSatResponse(CheckSatResponse),
EchoResponse(EchoResponse),
GetAssertionsResponse(GetAssertionsResponse),
GetAssignmentResponse(GetAssignmentResponse),
GetInfoResponse(GetInfoResponse),
GetModelResponse(GetModelResponse),
GetOptionResponse(GetOptionResponse),
GetProofResponse(GetProofResponse),
GetUnsatCoreResponse(GetUnsatCoreResponse),
GetValueResponse(GetValueResponse),
SimplifyResponse(SimplifyResponse),
}Variants§
GetUnsatAssumptionsResponse(GetUnsatAssumptionsResponse)
<get_unsat_assumptions_response>
CheckSatResponse(CheckSatResponse)
<check_sat_response>
EchoResponse(EchoResponse)
<echo_response>
GetAssertionsResponse(GetAssertionsResponse)
<get_assertions_response>
GetAssignmentResponse(GetAssignmentResponse)
<get_assignment_response>
GetInfoResponse(GetInfoResponse)
<get_info_response>
GetModelResponse(GetModelResponse)
<get_model_response>
GetOptionResponse(GetOptionResponse)
<get_option_response>
GetProofResponse(GetProofResponse)
<get_proof_response>
GetUnsatCoreResponse(GetUnsatCoreResponse)
<get_unsat_core_response>
GetValueResponse(GetValueResponse)
<get_value_response>
SimplifyResponse(SimplifyResponse)
<simplify_response>
Implementations§
Trait Implementations§
Source§impl Clone for SpecificSuccessResponse
impl Clone for SpecificSuccessResponse
Source§fn clone(&self) -> SpecificSuccessResponse
fn clone(&self) -> SpecificSuccessResponse
Returns a copy 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 SpecificSuccessResponse
impl Debug for SpecificSuccessResponse
Source§impl<'de> Deserialize<'de> for SpecificSuccessResponse
impl<'de> Deserialize<'de> for SpecificSuccessResponse
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 Display for SpecificSuccessResponse
impl Display for SpecificSuccessResponse
Source§impl Hash for SpecificSuccessResponse
impl Hash for SpecificSuccessResponse
Source§impl PartialEq for SpecificSuccessResponse
impl PartialEq for SpecificSuccessResponse
Source§impl Serialize for SpecificSuccessResponse
impl Serialize for SpecificSuccessResponse
impl Eq for SpecificSuccessResponse
impl StructuralPartialEq for SpecificSuccessResponse
Auto Trait Implementations§
impl Freeze for SpecificSuccessResponse
impl RefUnwindSafe for SpecificSuccessResponse
impl Send for SpecificSuccessResponse
impl Sync for SpecificSuccessResponse
impl Unpin for SpecificSuccessResponse
impl UnwindSafe for SpecificSuccessResponse
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