pub trait Space<T>where T: PartialOrd + PartialEq,{ // Required method fn contains(&self, value: T) -> bool; }
An interface that deals with subspaces.
Checks for the existence of a value within the defined subspace.
Returns true if the value exists, false otherwise.
true
false