pub struct StepValidation {
pub step: StepComment,
pub result: MatchResult,
pub spec_text: String,
pub algo_anchor: String,
}Expand description
A step validation result pairing a source comment with its match outcome.
Fields§
§step: StepComment§result: MatchResult§spec_text: String§algo_anchor: StringTrait Implementations§
Source§impl Clone for StepValidation
impl Clone for StepValidation
Source§fn clone(&self) -> StepValidation
fn clone(&self) -> StepValidation
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 StepValidation
impl Debug for StepValidation
Source§impl From<&StepValidation> for StepAnalysisView
impl From<&StepValidation> for StepAnalysisView
Source§fn from(sv: &StepValidation) -> Self
fn from(sv: &StepValidation) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StepValidation
impl RefUnwindSafe for StepValidation
impl Send for StepValidation
impl Sync for StepValidation
impl Unpin for StepValidation
impl UnsafeUnpin for StepValidation
impl UnwindSafe for StepValidation
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