pub struct ParseResult {
pub tree: Tree,
pub nodes: Vec<Node>,
pub edges: Vec<Edge>,
}
Expand description
Parse result containing nodes and edges
Fields§
§tree: Tree
The parsed tree
nodes: Vec<Node>
Extracted nodes
edges: Vec<Edge>
Extracted edges
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParseResult
impl RefUnwindSafe for ParseResult
impl Send for ParseResult
impl Sync for ParseResult
impl Unpin for ParseResult
impl UnwindSafe for ParseResult
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