pub struct FunctionAnalyzerOutput {
pub strings: Vec<String>,
pub warnings: Vec<CompileWarning>,
}Expand description
Output from analyzing a single function.
Fields§
§strings: Vec<String>String literals (deduplicated).
warnings: Vec<CompileWarning>Warnings collected during analysis.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FunctionAnalyzerOutput
impl RefUnwindSafe for FunctionAnalyzerOutput
impl Send for FunctionAnalyzerOutput
impl Sync for FunctionAnalyzerOutput
impl Unpin for FunctionAnalyzerOutput
impl UnwindSafe for FunctionAnalyzerOutput
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