[][src]Struct flag_algebra::IneqMeta

pub struct IneqMeta<F> {
    pub basis: Basis<F>,
    pub flag_expr: Expr,
    pub bound_expr: Expr,
}

Contains informations about a set of inequalities of a flag algebra.

Fields

basis: Basis<F>

Basis in which the inequality is expressed. This correspond to the type and size of the flags.

flag_expr: Expr

Expression recording how the left sides of the inequalities where constructed.

bound_expr: Expr

Expression recording how the right sides where constructed.

Trait Implementations

impl<F: Clone> Clone for IneqMeta<F>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<F: Debug> Debug for IneqMeta<F>[src]

Auto Trait Implementations

impl<F> Send for IneqMeta<F> where
    F: Send

impl<F> Unpin for IneqMeta<F> where
    F: Unpin

impl<F> Sync for IneqMeta<F> where
    F: Sync

impl<F> UnwindSafe for IneqMeta<F> where
    F: UnwindSafe

impl<F> RefUnwindSafe for IneqMeta<F> where
    F: RefUnwindSafe

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

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

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

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

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>,