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