pub enum ExistBodyFact {
AtomicFact(AtomicFact),
AndFact(AndFact),
ChainFact(ChainFact),
OrFact(OrFact),
InlineForall(ForallFact),
}Variants§
AtomicFact(AtomicFact)
AndFact(AndFact)
ChainFact(ChainFact)
OrFact(OrFact)
InlineForall(ForallFact)
Implementations§
Source§impl ExistBodyFact
impl ExistBodyFact
Source§impl ExistBodyFact
impl ExistBodyFact
pub fn to_latex_string(&self) -> String
Trait Implementations§
Source§impl Clone for ExistBodyFact
impl Clone for ExistBodyFact
Source§fn clone(&self) -> ExistBodyFact
fn clone(&self) -> ExistBodyFact
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 Display for ExistBodyFact
impl Display for ExistBodyFact
Source§impl From<AtomicFact> for ExistBodyFact
impl From<AtomicFact> for ExistBodyFact
Source§fn from(atomic_fact: AtomicFact) -> Self
fn from(atomic_fact: AtomicFact) -> Self
Converts to this type from the input type.
Source§impl From<EqualFact> for ExistBodyFact
impl From<EqualFact> for ExistBodyFact
Source§impl From<OrAndChainAtomicFact> for ExistBodyFact
impl From<OrAndChainAtomicFact> for ExistBodyFact
Source§fn from(fact: OrAndChainAtomicFact) -> Self
fn from(fact: OrAndChainAtomicFact) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExistBodyFact
impl RefUnwindSafe for ExistBodyFact
impl !Send for ExistBodyFact
impl !Sync for ExistBodyFact
impl Unpin for ExistBodyFact
impl UnsafeUnpin for ExistBodyFact
impl UnwindSafe for ExistBodyFact
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