pub struct ParseResult {
pub symbols: Vec<CodeNode>,
pub relations: Vec<SymbolRelation>,
pub file_path: String,
}Expand description
Result of parsing a single file.
Fields§
§symbols: Vec<CodeNode>Extracted code symbols.
relations: Vec<SymbolRelation>Relationships between symbols.
file_path: StringFile path that was parsed.
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 UnsafeUnpin 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