pub enum QuotedAtomChildren<'tree> {
EscapeSequence(Box<EscapeSequence<'tree>>),
Interpolation(Box<Interpolation<'tree>>),
QuotedContent(Box<QuotedContent<'tree>>),
}Variants§
EscapeSequence(Box<EscapeSequence<'tree>>)
Interpolation(Box<Interpolation<'tree>>)
QuotedContent(Box<QuotedContent<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for QuotedAtomChildren<'tree>
impl<'tree> Clone for QuotedAtomChildren<'tree>
Source§fn clone(&self) -> QuotedAtomChildren<'tree>
fn clone(&self) -> QuotedAtomChildren<'tree>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 QuotedAtomChildren<'tree>
impl<'tree> Debug for QuotedAtomChildren<'tree>
impl<'tree> Eq for QuotedAtomChildren<'tree>
Source§impl<'tree> FromNode<'tree> for QuotedAtomChildren<'tree>
impl<'tree> FromNode<'tree> for QuotedAtomChildren<'tree>
Source§impl<'tree> PartialEq for QuotedAtomChildren<'tree>
impl<'tree> PartialEq for QuotedAtomChildren<'tree>
Source§impl Spanned for QuotedAtomChildren<'_>
impl Spanned for QuotedAtomChildren<'_>
impl<'tree> StructuralPartialEq for QuotedAtomChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for QuotedAtomChildren<'tree>
impl<'tree> RefUnwindSafe for QuotedAtomChildren<'tree>
impl<'tree> Send for QuotedAtomChildren<'tree>
impl<'tree> Sync for QuotedAtomChildren<'tree>
impl<'tree> Unpin for QuotedAtomChildren<'tree>
impl<'tree> UnsafeUnpin for QuotedAtomChildren<'tree>
impl<'tree> UnwindSafe for QuotedAtomChildren<'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