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