pub struct TableEntry<'a> { /* private fields */ }
Implementations§
Source§impl<'a> TableEntry<'a>
impl<'a> TableEntry<'a>
pub fn get(self, key: &'a str) -> Option<EntryRef<'_>>
pub fn len_children(self) -> usize
pub fn iter_children(self) -> DirectChildren<'a> ⓘ
pub fn len(self) -> usize
pub fn iter(self) -> Box<dyn Iterator<Item = (&'a str, EntryRef<'a>)> + 'a>
pub fn to_value(self) -> TableValue<'a>
pub fn to_entry(self) -> EntryRef<'a>
Trait Implementations§
Source§impl<'a> Clone for TableEntry<'a>
impl<'a> Clone for TableEntry<'a>
Source§fn clone(&self) -> TableEntry<'a>
fn clone(&self) -> TableEntry<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl<'a> Copy for TableEntry<'a>
Auto Trait Implementations§
impl<'a> Freeze for TableEntry<'a>
impl<'a> !RefUnwindSafe for TableEntry<'a>
impl<'a> !Send for TableEntry<'a>
impl<'a> !Sync for TableEntry<'a>
impl<'a> Unpin for TableEntry<'a>
impl<'a> !UnwindSafe for TableEntry<'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