pub enum Child<'a> {
Line(Vec<&'a str>),
Element(Element<'a>),
}
Variants§
Line(Vec<&'a str>)
An arbitrary line of text, split into a String list using RPP’s string quoting rules.
Element(Element<'a>)
A subelement.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Child<'a>
impl<'a> RefUnwindSafe for Child<'a>
impl<'a> Send for Child<'a>
impl<'a> Sync for Child<'a>
impl<'a> Unpin for Child<'a>
impl<'a> UnwindSafe for Child<'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