pub struct PhraseTerminate {
pub operand: Expression,
}
Expand description
Represents a false-postulation within eFLINT, e.g.,
-citizen(Amy).
Fields§
§operand: Expression
The expression that determines the instance to postulate to false. Probably a constructor application, but not necessarily.
Trait Implementations§
Source§impl Clone for PhraseTerminate
impl Clone for PhraseTerminate
Source§fn clone(&self) -> PhraseTerminate
fn clone(&self) -> PhraseTerminate
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 PhraseTerminate
impl Debug for PhraseTerminate
Source§impl<'de> Deserialize<'de> for PhraseTerminate
impl<'de> Deserialize<'de> for PhraseTerminate
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
Auto Trait Implementations§
impl Freeze for PhraseTerminate
impl RefUnwindSafe for PhraseTerminate
impl Send for PhraseTerminate
impl Sync for PhraseTerminate
impl Unpin for PhraseTerminate
impl UnwindSafe for PhraseTerminate
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