Enum foxbox_taxonomy::util::Exactly
[−]
[src]
pub enum Exactly<T> { Always, Exactly(T), Never, }
A marker for a request that a expects a specific value.
Variants
Always | No constraint. | |
Exactly | Expect a specific value. | |
Never | Never accept a constraint. This can happen, for instance, we have have
attempted to |
Methods
impl<T> Exactly<T> where T: PartialEq
fn and(self, other: Self) -> Self
Combine two constraints.