[][src]Trait discrete::Construct

pub trait Construct {
    fn new() -> Self;
}

Constructs a new space.

Since spaces are combined using phantom types, an instance must be constructed to call methods on it.

Required methods

fn new() -> Self

Constructs a new Self.

Loading content...

Implementations on Foreign Types

impl<T, U> Construct for (T, U) where
    T: Construct,
    U: Construct
[src]

Loading content...

Implementors

impl<T> Construct for Context<T>[src]

impl<T> Construct for Dimension<T>[src]

impl<T> Construct for DimensionN<T>[src]

impl<T> Construct for DirectedContext<T>[src]

impl<T> Construct for EqPair<T>[src]

impl<T> Construct for NeqPair<T>[src]

impl<T> Construct for Pair<T>[src]

impl<T> Construct for Permutation<T>[src]

impl<T> Construct for PowerSet<T>[src]

impl<T, U> Construct for Either<T, U> where
    T: Construct,
    U: Construct
[src]

Loading content...