pub struct FileAnalysis {
pub url_matches: Vec<UrlMatch>,
pub scopes: Vec<ScopeAnalysis>,
}Expand description
Result of analyzing a single source file.
Fields§
§url_matches: Vec<UrlMatch>All spec URL matches found in the file (for position lookups).
scopes: Vec<ScopeAnalysis>Per-scope analysis results.
Trait Implementations§
Source§impl Clone for FileAnalysis
impl Clone for FileAnalysis
Source§fn clone(&self) -> FileAnalysis
fn clone(&self) -> FileAnalysis
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FileAnalysis
impl Debug for FileAnalysis
Source§impl From<&FileAnalysis> for FileAnalysisView
impl From<&FileAnalysis> for FileAnalysisView
Source§fn from(fa: &FileAnalysis) -> Self
fn from(fa: &FileAnalysis) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FileAnalysis
impl RefUnwindSafe for FileAnalysis
impl Send for FileAnalysis
impl Sync for FileAnalysis
impl Unpin for FileAnalysis
impl UnsafeUnpin for FileAnalysis
impl UnwindSafe for FileAnalysis
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