pub struct AnalysisResult {
pub structs: Vec<StructDecl>,
pub functions: Vec<FunctionDecl>,
}Expand description
The top-level result of a project analysis.
Fields§
§structs: Vec<StructDecl>All struct definitions found.
functions: Vec<FunctionDecl>All function and method definitions found.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AnalysisResult
impl RefUnwindSafe for AnalysisResult
impl Send for AnalysisResult
impl Sync for AnalysisResult
impl Unpin for AnalysisResult
impl UnwindSafe for AnalysisResult
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