Skip to main content

Fact

Enum Fact 

Source
pub enum Fact {
    AtomicFact(AtomicFact),
    ExistFact(ExistFactEnum),
    OrFact(OrFact),
    AndFact(AndFact),
    ChainFact(ChainFact),
    ForallFact(ForallFact),
    ForallFactWithIff(ForallFactWithIff),
    NotForall(NotForallFact),
}

Variants§

§

AtomicFact(AtomicFact)

§

ExistFact(ExistFactEnum)

§

OrFact(OrFact)

§

AndFact(AndFact)

§

ChainFact(ChainFact)

§

ForallFact(ForallFact)

§

ForallFactWithIff(ForallFactWithIff)

§

NotForall(NotForallFact)

Implementations§

Source§

impl Fact

Source§

impl Fact

Source

pub fn line_file(&self) -> LineFile

Source

pub fn with_line_file(self, line_file: LineFile) -> Self

Source

pub fn into_stmt(self) -> Stmt

Source§

impl Fact

Source

pub fn to_latex_string(&self) -> String

Trait Implementations§

Source§

impl Clone for Fact

Source§

fn clone(&self) -> Fact

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Fact

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Fact

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<AndChainAtomicFact> for Fact

Source§

fn from(f: AndChainAtomicFact) -> Self

Converts to this type from the input type.
Source§

impl From<AndFact> for Fact

Source§

fn from(and_fact: AndFact) -> Self

Converts to this type from the input type.
Source§

impl From<AtomicFact> for Fact

Source§

fn from(atomic_fact: AtomicFact) -> Self

Converts to this type from the input type.
Source§

impl From<ChainFact> for Fact

Source§

fn from(chain_fact: ChainFact) -> Self

Converts to this type from the input type.
Source§

impl From<EqualFact> for Fact

Source§

fn from(f: EqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<ExistFactEnum> for Fact

Source§

fn from(exist_fact: ExistFactEnum) -> Self

Converts to this type from the input type.
Source§

impl From<Fact> for Stmt

Source§

fn from(v: Fact) -> Self

Converts to this type from the input type.
Source§

impl From<FnEqualFact> for Fact

Source§

fn from(f: FnEqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<FnEqualInFact> for Fact

Source§

fn from(f: FnEqualInFact) -> Self

Converts to this type from the input type.
Source§

impl From<ForallFact> for Fact

Source§

fn from(forall_fact: ForallFact) -> Self

Converts to this type from the input type.
Source§

impl From<ForallFactWithIff> for Fact

Source§

fn from(forall_fact_with_iff: ForallFactWithIff) -> Self

Converts to this type from the input type.
Source§

impl From<GreaterEqualFact> for Fact

Source§

fn from(f: GreaterEqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<GreaterFact> for Fact

Source§

fn from(f: GreaterFact) -> Self

Converts to this type from the input type.
Source§

impl From<InFact> for Fact

Source§

fn from(f: InFact) -> Self

Converts to this type from the input type.
Source§

impl From<IsCartFact> for Fact

Source§

fn from(f: IsCartFact) -> Self

Converts to this type from the input type.
Source§

impl From<IsFiniteSetFact> for Fact

Source§

fn from(f: IsFiniteSetFact) -> Self

Converts to this type from the input type.
Source§

impl From<IsNonemptySetFact> for Fact

Source§

fn from(f: IsNonemptySetFact) -> Self

Converts to this type from the input type.
Source§

impl From<IsSetFact> for Fact

Source§

fn from(f: IsSetFact) -> Self

Converts to this type from the input type.
Source§

impl From<IsTupleFact> for Fact

Source§

fn from(f: IsTupleFact) -> Self

Converts to this type from the input type.
Source§

impl From<LessEqualFact> for Fact

Source§

fn from(f: LessEqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<LessFact> for Fact

Source§

fn from(f: LessFact) -> Self

Converts to this type from the input type.
Source§

impl From<NormalAtomicFact> for Fact

Source§

fn from(f: NormalAtomicFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotEqualFact> for Fact

Source§

fn from(f: NotEqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotForallFact> for Fact

Source§

fn from(not_forall_fact: NotForallFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotGreaterEqualFact> for Fact

Source§

fn from(f: NotGreaterEqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotGreaterFact> for Fact

Source§

fn from(f: NotGreaterFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotInFact> for Fact

Source§

fn from(f: NotInFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotIsCartFact> for Fact

Source§

fn from(f: NotIsCartFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotIsFiniteSetFact> for Fact

Source§

fn from(f: NotIsFiniteSetFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotIsNonemptySetFact> for Fact

Source§

fn from(f: NotIsNonemptySetFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotIsSetFact> for Fact

Source§

fn from(f: NotIsSetFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotIsTupleFact> for Fact

Source§

fn from(f: NotIsTupleFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotLessEqualFact> for Fact

Source§

fn from(f: NotLessEqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotLessFact> for Fact

Source§

fn from(f: NotLessFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotNormalAtomicFact> for Fact

Source§

fn from(f: NotNormalAtomicFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotRestrictFact> for Fact

Source§

fn from(f: NotRestrictFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotSubsetFact> for Fact

Source§

fn from(f: NotSubsetFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotSupersetFact> for Fact

Source§

fn from(f: NotSupersetFact) -> Self

Converts to this type from the input type.
Source§

impl From<OrAndChainAtomicFact> for Fact

Source§

fn from(f: OrAndChainAtomicFact) -> Self

Converts to this type from the input type.
Source§

impl From<OrFact> for Fact

Source§

fn from(or_fact: OrFact) -> Self

Converts to this type from the input type.
Source§

impl From<RestrictFact> for Fact

Source§

fn from(f: RestrictFact) -> Self

Converts to this type from the input type.
Source§

impl From<SubsetFact> for Fact

Source§

fn from(f: SubsetFact) -> Self

Converts to this type from the input type.
Source§

impl From<SupersetFact> for Fact

Source§

fn from(f: SupersetFact) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl Freeze for Fact

§

impl RefUnwindSafe for Fact

§

impl !Send for Fact

§

impl !Sync for Fact

§

impl Unpin for Fact

§

impl UnsafeUnpin for Fact

§

impl UnwindSafe for Fact

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.