pub enum StringLiteralChildren<'tree> {
EscapeSequence(Box<EscapeSequence<'tree>>),
MultilineStringFragment(Box<MultilineStringFragment<'tree>>),
StringFragment(Box<StringFragment<'tree>>),
StringInterpolation(Box<StringInterpolation<'tree>>),
}Variants§
EscapeSequence(Box<EscapeSequence<'tree>>)
MultilineStringFragment(Box<MultilineStringFragment<'tree>>)
StringFragment(Box<StringFragment<'tree>>)
StringInterpolation(Box<StringInterpolation<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for StringLiteralChildren<'tree>
impl<'tree> Clone for StringLiteralChildren<'tree>
Source§fn clone(&self) -> StringLiteralChildren<'tree>
fn clone(&self) -> StringLiteralChildren<'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 StringLiteralChildren<'tree>
impl<'tree> Debug for StringLiteralChildren<'tree>
Source§impl<'tree> FromNode<'tree> for StringLiteralChildren<'tree>
impl<'tree> FromNode<'tree> for StringLiteralChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for StringLiteralChildren<'tree>
impl<'tree> RefUnwindSafe for StringLiteralChildren<'tree>
impl<'tree> Send for StringLiteralChildren<'tree>
impl<'tree> Sync for StringLiteralChildren<'tree>
impl<'tree> Unpin for StringLiteralChildren<'tree>
impl<'tree> UnsafeUnpin for StringLiteralChildren<'tree>
impl<'tree> UnwindSafe for StringLiteralChildren<'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