pub enum N<'a> {
Newline,
Text(String, u32),
Flat(NRef<'a>),
Indent(u32, NRef<'a>),
Concat(Vec<NRef<'a>>),
Choice(NRef<'a>, NRef<'a>),
}Variants§
Newline
Text(String, u32)
Flat(NRef<'a>)
Indent(u32, NRef<'a>)
Concat(Vec<NRef<'a>>)
Choice(NRef<'a>, NRef<'a>)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for N<'a>
impl<'a> RefUnwindSafe for N<'a>
impl<'a> Send for N<'a>
impl<'a> Sync for N<'a>
impl<'a> Unpin for N<'a>
impl<'a> UnwindSafe for N<'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