pub enum CstNodeKind<'a> {
Leaf(&'a str),
Internal(CstChildren<'a>),
}Variants§
Leaf(&'a str)
Internal(CstChildren<'a>)
Auto Trait Implementations§
impl<'a> Freeze for CstNodeKind<'a>
impl<'a> RefUnwindSafe for CstNodeKind<'a>
impl<'a> Send for CstNodeKind<'a>
impl<'a> Sync for CstNodeKind<'a>
impl<'a> Unpin for CstNodeKind<'a>
impl<'a> UnwindSafe for CstNodeKind<'a>
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