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