pub struct StepAnalysisView {
pub line: usize,
pub col: usize,
pub step: Vec<u32>,
pub comment_text: String,
pub result: String,
pub spec_text: String,
}Expand description
Serializable view of a single step validation.
Fields§
§line: usize§col: usize§step: Vec<u32>§comment_text: String§result: String§spec_text: StringTrait Implementations§
Source§impl Debug for StepAnalysisView
impl Debug for StepAnalysisView
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 StepAnalysisView
impl RefUnwindSafe for StepAnalysisView
impl Send for StepAnalysisView
impl Sync for StepAnalysisView
impl Unpin for StepAnalysisView
impl UnsafeUnpin for StepAnalysisView
impl UnwindSafe for StepAnalysisView
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