[][src]Struct differential_formula::rule::Rule

pub struct Rule { /* fields omitted */ }

Methods

impl Rule[src]

pub fn new(head: Vec<Term>, body: Vec<Constraint>) -> Self[src]

pub fn get_head(&self) -> Vec<Term>[src]

pub fn get_body(&self) -> Vec<Constraint>[src]

pub fn variables(&self) -> HashSet<Term>[src]

pub fn derived_variables(&self) -> HashSet<Term>[src]

pub fn matched_variables(&self) -> HashSet<Term>[src]

pub fn pos_preds(&self) -> Vec<Constraint>[src]

pub fn is_constraint_with_derived_term(&self, constraint: Constraint) -> bool[src]

pub fn pure_constraints(&self) -> Vec<&Constraint>[src]

pub fn ordered_definition_constraints(&self) -> Vec<&Constraint>[src]

pub fn binary_constraints(&self) -> Vec<&Constraint>[src]

Trait Implementations

impl Clone for Rule[src]

impl Debug for Rule[src]

impl Display for Rule[src]

impl From<SetComprehension> for Rule[src]

Auto Trait Implementations

impl RefUnwindSafe for Rule

impl Send for Rule

impl Sync for Rule

impl Unpin for Rule

impl UnwindSafe for Rule

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 + Clone
[src]

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

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.