pub trait Value: PartialEq<Self> {
type Key;
type Item;
// Required method
fn items<'a>(
&'a self
) -> Option<Box<dyn Iterator<Item = (Self::Key, &'a Self::Item)> + 'a>>;
}
Expand description
Represents a scalar value or an associative array.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.