pub enum Entry<'a> {
Vacant(VacantEntry<'a>),
Occupied(OccupiedEntry<'a>),
}Expand description
Variants
Vacant(VacantEntry<'a>)
A vacant Entry.
Occupied(OccupiedEntry<'a>)
An occupied Entry.
Implementations
sourceimpl<'a> Entry<'a>
impl<'a> Entry<'a>
sourcepub fn key(&self) -> &KString
pub fn key(&self) -> &KString
Returns a reference to this entry’s key.
Examples
let mut map = liquid_core::model::Object::new();
assert_eq!(map.entry("liquid").key(), &"liquid");sourcepub fn or_insert(self, default: Value) -> &'a mut Value
pub fn or_insert(self, default: Value) -> &'a mut Value
Ensures a value is in the entry by inserting the default if empty, and returns a mutable reference to the value in the entry.
Examples
let mut map = liquid_core::model::Object::new();
map.entry("liquid").or_insert(liquid_core::value!(12));
assert_eq!(map["liquid"], liquid_core::value!(12));sourcepub fn or_insert_with<F>(self, default: F) -> &'a mut Value where
F: FnOnce() -> Value,
pub fn or_insert_with<F>(self, default: F) -> &'a mut Value where
F: FnOnce() -> Value,
Ensures a value is in the entry by inserting the result of the default function if empty, and returns a mutable reference to the value in the entry.
Examples
let mut map = liquid_core::model::Object::new();
map.entry("liquid").or_insert_with(|| liquid_core::value!("hoho"));
assert_eq!(map["liquid"], liquid_core::value!("hoho"));Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Entry<'a>
impl<'a> Send for Entry<'a>
impl<'a> Sync for Entry<'a>
impl<'a> Unpin for Entry<'a>
impl<'a> !UnwindSafe for Entry<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more