pub trait Space {
    type Element: Clone + Send;

    fn contains(&self, value: &Self::Element) -> bool;
}
Expand description

A space: a set of values with some added structure.

A space is effectively a runtime-defined type.

Required Associated Types

Required Methods

Check whether a particular value is contained in the space.

Implementations on Foreign Types

Implementors