pub trait PakIndexIdentifier {
// Required method
fn identifier(&self) -> &str;
// Provided methods
fn equals<T, V>(&self, other: V) -> PakQuery<T>
where T: DeserializeGroup,
V: IntoPakValue { ... }
fn less_than<T, V>(&self, other: V) -> PakQuery<T>
where T: DeserializeGroup,
V: IntoPakValue { ... }
fn greater_than<T, V>(&self, other: V) -> PakQuery<T>
where T: DeserializeGroup,
V: IntoPakValue { ... }
fn greater_than_or_equal<T, V>(&self, other: V) -> PakQuery<T>
where T: DeserializeGroup,
V: IntoPakValue { ... }
fn less_than_or_equal<T, V>(&self, other: V) -> PakQuery<T>
where T: DeserializeGroup,
V: IntoPakValue { ... }
fn contains_value<T, V>(&self, other: V) -> PakQuery<T>
where T: DeserializeGroup,
V: IntoPakValue { ... }
}Required Methods§
fn identifier(&self) -> &str
Provided Methods§
fn equals<T, V>(&self, other: V) -> PakQuery<T>where
T: DeserializeGroup,
V: IntoPakValue,
fn less_than<T, V>(&self, other: V) -> PakQuery<T>where
T: DeserializeGroup,
V: IntoPakValue,
fn greater_than<T, V>(&self, other: V) -> PakQuery<T>where
T: DeserializeGroup,
V: IntoPakValue,
fn greater_than_or_equal<T, V>(&self, other: V) -> PakQuery<T>where
T: DeserializeGroup,
V: IntoPakValue,
fn less_than_or_equal<T, V>(&self, other: V) -> PakQuery<T>where
T: DeserializeGroup,
V: IntoPakValue,
fn contains_value<T, V>(&self, other: V) -> PakQuery<T>where
T: DeserializeGroup,
V: IntoPakValue,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.