Enum serde_yaml::mapping::Entry
source · pub enum Entry<'a> {
Occupied(OccupiedEntry<'a>),
Vacant(VacantEntry<'a>),
}
Expand description
Entry for an existing key-value pair or a vacant location to insert one.
Variants§
Occupied(OccupiedEntry<'a>)
Existing slot with equivalent key.
Vacant(VacantEntry<'a>)
Vacant slot (no equivalent key in the map).
Implementations§
source§impl<'a> Entry<'a>
impl<'a> Entry<'a>
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.
sourcepub fn or_insert_with<F>(self, default: F) -> &'a mut Value
pub fn or_insert_with<F>(self, default: F) -> &'a mut 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.
sourcepub fn and_modify<F>(self, f: F) -> Self
pub fn and_modify<F>(self, f: F) -> Self
Provides in-place mutable access to an occupied entry before any potential inserts into the map.
Auto Trait Implementations§
impl<'a> Freeze for Entry<'a>
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more