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