Skip to main content

AtomicFact

Enum AtomicFact 

Source
pub enum AtomicFact {
Show 32 variants NormalAtomicFact(NormalAtomicFact), EqualFact(EqualFact), LessFact(LessFact), GreaterFact(GreaterFact), LessEqualFact(LessEqualFact), GreaterEqualFact(GreaterEqualFact), IsSetFact(IsSetFact), IsNonemptySetFact(IsNonemptySetFact), IsFiniteSetFact(IsFiniteSetFact), InFact(InFact), IsCartFact(IsCartFact), IsTupleFact(IsTupleFact), SubsetFact(SubsetFact), SupersetFact(SupersetFact), RestrictFact(RestrictFact), NotRestrictFact(NotRestrictFact), NotNormalAtomicFact(NotNormalAtomicFact), NotEqualFact(NotEqualFact), NotLessFact(NotLessFact), NotGreaterFact(NotGreaterFact), NotLessEqualFact(NotLessEqualFact), NotGreaterEqualFact(NotGreaterEqualFact), NotIsSetFact(NotIsSetFact), NotIsNonemptySetFact(NotIsNonemptySetFact), NotIsFiniteSetFact(NotIsFiniteSetFact), NotInFact(NotInFact), NotIsCartFact(NotIsCartFact), NotIsTupleFact(NotIsTupleFact), NotSubsetFact(NotSubsetFact), NotSupersetFact(NotSupersetFact), FnEqualInFact(FnEqualInFact), FnEqualFact(FnEqualFact),
}

Variants§

§

NormalAtomicFact(NormalAtomicFact)

§

EqualFact(EqualFact)

§

LessFact(LessFact)

§

GreaterFact(GreaterFact)

§

LessEqualFact(LessEqualFact)

§

GreaterEqualFact(GreaterEqualFact)

§

IsSetFact(IsSetFact)

§

IsNonemptySetFact(IsNonemptySetFact)

§

IsFiniteSetFact(IsFiniteSetFact)

§

InFact(InFact)

§

IsCartFact(IsCartFact)

§

IsTupleFact(IsTupleFact)

§

SubsetFact(SubsetFact)

§

SupersetFact(SupersetFact)

§

RestrictFact(RestrictFact)

§

NotRestrictFact(NotRestrictFact)

§

NotNormalAtomicFact(NotNormalAtomicFact)

§

NotEqualFact(NotEqualFact)

§

NotLessFact(NotLessFact)

§

NotGreaterFact(NotGreaterFact)

§

NotLessEqualFact(NotLessEqualFact)

§

NotGreaterEqualFact(NotGreaterEqualFact)

§

NotIsSetFact(NotIsSetFact)

§

NotIsNonemptySetFact(NotIsNonemptySetFact)

§

NotIsFiniteSetFact(NotIsFiniteSetFact)

§

NotInFact(NotInFact)

§

NotIsCartFact(NotIsCartFact)

§

NotIsTupleFact(NotIsTupleFact)

§

NotSubsetFact(NotSubsetFact)

§

NotSupersetFact(NotSupersetFact)

§

FnEqualInFact(FnEqualInFact)

§

FnEqualFact(FnEqualFact)

Implementations§

Trait Implementations§

Source§

impl Clone for AtomicFact

Source§

fn clone(&self) -> AtomicFact

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 Display for AtomicFact

Source§

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

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

impl From<AtomicFact> for AndChainAtomicFact

Source§

fn from(atomic_fact: AtomicFact) -> Self

Converts to this type from the input type.
Source§

impl From<AtomicFact> for ExistBodyFact

Source§

fn from(atomic_fact: AtomicFact) -> Self

Converts to this type from the input type.
Source§

impl From<AtomicFact> for ExistOrAndChainAtomicFact

Source§

fn from(atomic_fact: AtomicFact) -> 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<AtomicFact> for OrAndChainAtomicFact

Source§

fn from(atomic_fact: AtomicFact) -> Self

Converts to this type from the input type.
Source§

impl From<EqualFact> for AtomicFact

Source§

fn from(f: EqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<FnEqualFact> for AtomicFact

Source§

fn from(f: FnEqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<FnEqualInFact> for AtomicFact

Source§

fn from(f: FnEqualInFact) -> Self

Converts to this type from the input type.
Source§

impl From<GreaterEqualFact> for AtomicFact

Source§

fn from(f: GreaterEqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<GreaterFact> for AtomicFact

Source§

fn from(f: GreaterFact) -> Self

Converts to this type from the input type.
Source§

impl From<InFact> for AtomicFact

Source§

fn from(f: InFact) -> Self

Converts to this type from the input type.
Source§

impl From<IsCartFact> for AtomicFact

Source§

fn from(f: IsCartFact) -> Self

Converts to this type from the input type.
Source§

impl From<IsFiniteSetFact> for AtomicFact

Source§

fn from(f: IsFiniteSetFact) -> Self

Converts to this type from the input type.
Source§

impl From<IsNonemptySetFact> for AtomicFact

Source§

fn from(f: IsNonemptySetFact) -> Self

Converts to this type from the input type.
Source§

impl From<IsSetFact> for AtomicFact

Source§

fn from(f: IsSetFact) -> Self

Converts to this type from the input type.
Source§

impl From<IsTupleFact> for AtomicFact

Source§

fn from(f: IsTupleFact) -> Self

Converts to this type from the input type.
Source§

impl From<LessEqualFact> for AtomicFact

Source§

fn from(f: LessEqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<LessFact> for AtomicFact

Source§

fn from(f: LessFact) -> Self

Converts to this type from the input type.
Source§

impl From<NormalAtomicFact> for AtomicFact

Source§

fn from(f: NormalAtomicFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotEqualFact> for AtomicFact

Source§

fn from(f: NotEqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotGreaterEqualFact> for AtomicFact

Source§

fn from(f: NotGreaterEqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotGreaterFact> for AtomicFact

Source§

fn from(f: NotGreaterFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotInFact> for AtomicFact

Source§

fn from(f: NotInFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotIsCartFact> for AtomicFact

Source§

fn from(f: NotIsCartFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotIsFiniteSetFact> for AtomicFact

Source§

fn from(f: NotIsFiniteSetFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotIsNonemptySetFact> for AtomicFact

Source§

fn from(f: NotIsNonemptySetFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotIsSetFact> for AtomicFact

Source§

fn from(f: NotIsSetFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotIsTupleFact> for AtomicFact

Source§

fn from(f: NotIsTupleFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotLessEqualFact> for AtomicFact

Source§

fn from(f: NotLessEqualFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotLessFact> for AtomicFact

Source§

fn from(f: NotLessFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotNormalAtomicFact> for AtomicFact

Source§

fn from(f: NotNormalAtomicFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotRestrictFact> for AtomicFact

Source§

fn from(f: NotRestrictFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotSubsetFact> for AtomicFact

Source§

fn from(f: NotSubsetFact) -> Self

Converts to this type from the input type.
Source§

impl From<NotSupersetFact> for AtomicFact

Source§

fn from(f: NotSupersetFact) -> Self

Converts to this type from the input type.
Source§

impl From<RestrictFact> for AtomicFact

Source§

fn from(f: RestrictFact) -> Self

Converts to this type from the input type.
Source§

impl From<SubsetFact> for AtomicFact

Source§

fn from(f: SubsetFact) -> Self

Converts to this type from the input type.
Source§

impl From<SupersetFact> for AtomicFact

Source§

fn from(f: SupersetFact) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

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.