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