pub struct ScopeAnalysis {
pub url_match: UrlMatch,
pub validations: Vec<StepValidation>,
pub coverage: Option<CoverageResult>,
}Expand description
Analysis of a single spec scope within a file.
Fields§
§url_match: UrlMatch§validations: Vec<StepValidation>§coverage: Option<CoverageResult>Trait Implementations§
Source§impl Clone for ScopeAnalysis
impl Clone for ScopeAnalysis
Source§fn clone(&self) -> ScopeAnalysis
fn clone(&self) -> ScopeAnalysis
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 ScopeAnalysis
impl Debug for ScopeAnalysis
Source§impl From<&ScopeAnalysis> for ScopeAnalysisView
impl From<&ScopeAnalysis> for ScopeAnalysisView
Source§fn from(sa: &ScopeAnalysis) -> Self
fn from(sa: &ScopeAnalysis) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ScopeAnalysis
impl RefUnwindSafe for ScopeAnalysis
impl Send for ScopeAnalysis
impl Sync for ScopeAnalysis
impl Unpin for ScopeAnalysis
impl UnsafeUnpin for ScopeAnalysis
impl UnwindSafe for ScopeAnalysis
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