[][src]Enum differential_formula::term::Term

pub enum Term {
    Composite(Composite),
    Variable(Variable),
    Atom(Atom),
}

Variants

Composite(Composite)
Variable(Variable)
Atom(Atom)

Methods

impl Term[src]

pub fn terms_intersection(
    a: HashSet<Term>,
    b: HashSet<Term>
) -> (Vec<Term>, Vec<Term>, Vec<Term>)
[src]

pub fn has_conflit<T>(outer: &T, inner: &T) -> bool where
    T: GenericMap<Term, Term>, 
[src]

Trait Implementations

impl BaseExprBehavior for Term[src]

impl Clone for Term[src]

impl Debug for Term[src]

impl<'de> Deserialize<'de> for Term[src]

impl Display for Term[src]

impl Eq for Term[src]

impl From<Atom> for Term[src]

impl From<Composite> for Term[src]

impl From<Term> for BaseExpr[src]

impl From<Variable> for Term[src]

impl Hash for Term[src]

impl Ord for Term[src]

impl PartialEq<Term> for Term[src]

impl PartialOrd<Term> for Term[src]

impl Serialize for Term[src]

impl StructuralEq for Term[src]

impl StructuralPartialEq for Term[src]

impl TermBehavior for Term[src]

impl TryInto<Atom> for Term[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<Composite> for Term[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<Term> for BaseExpr[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<Variable> for Term[src]

type Error = &'static str

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Term

impl Send for Term

impl Sync for Term

impl Unpin for Term

impl UnwindSafe for Term

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Data for T where
    T: 'static + Send + Sync + Any + Deserialize<'a> + Serialize

impl<T> Data for T where
    T: 'static + Clone
[src]

impl<T> Data for T where
    T: Ord + Debug + Data
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> ExchangeData for T where
    T: Data + Data, 
[src]

impl<T> ExchangeData for T where
    T: Ord + Debug + ExchangeData
[src]

impl<T> From<T> for T[src]

impl<T> Hashable for T where
    T: Hash
[src]

type Output = u64

The type of the output value.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.