pub enum TableChildren<'tree> {
BareKey(Box<BareKey<'tree>>),
DottedKey(Box<DottedKey<'tree>>),
Pair(Box<Pair<'tree>>),
QuotedKey(Box<QuotedKey<'tree>>),
}Variants§
BareKey(Box<BareKey<'tree>>)
DottedKey(Box<DottedKey<'tree>>)
Pair(Box<Pair<'tree>>)
QuotedKey(Box<QuotedKey<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for TableChildren<'tree>
impl<'tree> Clone for TableChildren<'tree>
Source§fn clone(&self) -> TableChildren<'tree>
fn clone(&self) -> TableChildren<'tree>
Returns a duplicate 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 moreSource§impl<'tree> Debug for TableChildren<'tree>
impl<'tree> Debug for TableChildren<'tree>
Source§impl<'tree> FromNode<'tree> for TableChildren<'tree>
impl<'tree> FromNode<'tree> for TableChildren<'tree>
Source§impl<'tree> PartialEq for TableChildren<'tree>
impl<'tree> PartialEq for TableChildren<'tree>
Source§impl Spanned for TableChildren<'_>
impl Spanned for TableChildren<'_>
impl<'tree> Eq for TableChildren<'tree>
impl<'tree> StructuralPartialEq for TableChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for TableChildren<'tree>
impl<'tree> RefUnwindSafe for TableChildren<'tree>
impl<'tree> Send for TableChildren<'tree>
impl<'tree> Sync for TableChildren<'tree>
impl<'tree> Unpin for TableChildren<'tree>
impl<'tree> UnsafeUnpin for TableChildren<'tree>
impl<'tree> UnwindSafe for TableChildren<'tree>
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