Enum fxbox_taxonomy::util::Exactly
[−]
[src]
pub enum Exactly<T> { Empty, Exactly(T), Conflict, }
A marker for a request that a expects a specific value.
Variants
Empty | No constraint. | |
Exactly | Expect a specific value. | |
Conflict | Two conflicting constraints (or more) have been put on the value. |
Methods
impl<T> Exactly<T> where T: PartialEq
fn and(self, other: Self) -> Self
Combine two constraints.