pub struct Output<'a> {
pub nodes: Vec<Node<'a>>,
pub warnings: Vec<Warning>,
}
Expand description
Output of parsing wiki text.
Fields§
§nodes: Vec<Node<'a>>
The top level of parsed nodes.
warnings: Vec<Warning>
Warnings from the parser telling that something is not well-formed.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Output<'a>
impl<'a> RefUnwindSafe for Output<'a>
impl<'a> Send for Output<'a>
impl<'a> Sync for Output<'a>
impl<'a> Unpin for Output<'a>
impl<'a> UnwindSafe for Output<'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