pub enum QuotedKeywordChildren<'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 QuotedKeywordChildren<'tree>
impl<'tree> Clone for QuotedKeywordChildren<'tree>
Source§fn clone(&self) -> QuotedKeywordChildren<'tree>
fn clone(&self) -> QuotedKeywordChildren<'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 QuotedKeywordChildren<'tree>
impl<'tree> Debug for QuotedKeywordChildren<'tree>
impl<'tree> Eq for QuotedKeywordChildren<'tree>
Source§impl<'tree> FromNode<'tree> for QuotedKeywordChildren<'tree>
impl<'tree> FromNode<'tree> for QuotedKeywordChildren<'tree>
Source§impl<'tree> PartialEq for QuotedKeywordChildren<'tree>
impl<'tree> PartialEq for QuotedKeywordChildren<'tree>
Source§impl Spanned for QuotedKeywordChildren<'_>
impl Spanned for QuotedKeywordChildren<'_>
impl<'tree> StructuralPartialEq for QuotedKeywordChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for QuotedKeywordChildren<'tree>
impl<'tree> RefUnwindSafe for QuotedKeywordChildren<'tree>
impl<'tree> Send for QuotedKeywordChildren<'tree>
impl<'tree> Sync for QuotedKeywordChildren<'tree>
impl<'tree> Unpin for QuotedKeywordChildren<'tree>
impl<'tree> UnsafeUnpin for QuotedKeywordChildren<'tree>
impl<'tree> UnwindSafe for QuotedKeywordChildren<'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