Trait discrete::Construct [] [src]

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

Constructs a new space.

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

Required Methods

Constructs a new Self.

Implementors