pub enum InlineEntry<'a> {
Occupied(InlineOccupiedEntry<'a>),
Vacant(InlineVacantEntry<'a>),
}
Expand description
A view into a single location in a map, which may be vacant or occupied.
Variants§
Implementations§
Source§impl<'a> InlineEntry<'a>
impl<'a> InlineEntry<'a>
Sourcepub fn key(&self) -> &str
pub fn key(&self) -> &str
Returns the entry key
§Examples
use toml_edit::Table;
let mut map = Table::new();
assert_eq!("hello", map.entry("hello").key());
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: FnOnce() -> Value>(self, default: F) -> &'a mut Value
pub fn or_insert_with<F: FnOnce() -> Value>(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.
Auto Trait Implementations§
impl<'a> Freeze for InlineEntry<'a>
impl<'a> RefUnwindSafe for InlineEntry<'a>
impl<'a> Send for InlineEntry<'a>
impl<'a> Sync for InlineEntry<'a>
impl<'a> Unpin for InlineEntry<'a>
impl<'a> !UnwindSafe for InlineEntry<'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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 168 bytes
Size for each variant:
Occupied
: 40 bytesVacant
: 168 bytes