Trait bluejay_validator::executable::operation::VariableValues
source · pub trait VariableValues {
type Key: AsRef<str>;
type Value: Value<true>;
type Iterator<'a>: Iterator<Item = (&'a Self::Key, &'a Self::Value)>
where Self: 'a;
// Required method
fn iter(&self) -> Self::Iterator<'_>;
// Provided method
fn get(&self, key: &str) -> Option<&Self::Value> { ... }
}Required Associated Types§
type Key: AsRef<str>
type Value: Value<true>
type Iterator<'a>: Iterator<Item = (&'a Self::Key, &'a Self::Value)> where Self: 'a
Required Methods§
Provided Methods§
Object Safety§
This trait is not object safe.