pub struct TargetValidationResult {
pub files_checked: usize,
pub file_errors: Vec<(TextFile, ErrorReports)>,
}Expand description
Result of validating a single target.
Fields§
§files_checked: usizeNumber of files checked.
file_errors: Vec<(TextFile, ErrorReports)>Files with errors: (file, errors).
Implementations§
Trait Implementations§
Source§impl Clone for TargetValidationResult
impl Clone for TargetValidationResult
Source§fn clone(&self) -> TargetValidationResult
fn clone(&self) -> TargetValidationResult
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 TargetValidationResult
impl Debug for TargetValidationResult
Source§impl Default for TargetValidationResult
impl Default for TargetValidationResult
Source§fn default() -> TargetValidationResult
fn default() -> TargetValidationResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for TargetValidationResult
impl PartialEq for TargetValidationResult
impl StructuralPartialEq for TargetValidationResult
Auto Trait Implementations§
impl Freeze for TargetValidationResult
impl RefUnwindSafe for TargetValidationResult
impl Send for TargetValidationResult
impl Sync for TargetValidationResult
impl Unpin for TargetValidationResult
impl UnsafeUnpin for TargetValidationResult
impl UnwindSafe for TargetValidationResult
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