[][src]Struct flag_algebra::IneqMeta

pub struct IneqMeta<N, F> {
    pub basis: Basis<F>,
    pub flag_expr: Expr<N, F>,
    pub bound_expr: Expr<N, F>,
    pub equality: bool,
    // some fields omitted
}

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<N, F>

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

bound_expr: Expr<N, F>

Expression recording how the right sides where constructed.

equality: bool

True if the inequality is an equality

Trait Implementations

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

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

impl<N, F> Display for IneqMeta<N, F> where
    N: Display
[src]

Auto Trait Implementations

impl<N, F> !RefUnwindSafe for IneqMeta<N, F>

impl<N, F> !Send for IneqMeta<N, F>

impl<N, F> !Sync for IneqMeta<N, F>

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

impl<N, F> !UnwindSafe for IneqMeta<N, F>

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> From<T> for T[src]

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

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

type Output = T

Should always be Self

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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,