pub struct ValidationResult {
pub success: bool,
pub errors: Vec<ValidationError>,
pub warnings: Vec<ValidationWarning>,
pub file_path: String,
pub file_type: String,
}Fields§
§success: bool§errors: Vec<ValidationError>§warnings: Vec<ValidationWarning>§file_path: String§file_type: StringAuto Trait Implementations§
impl Freeze for ValidationResult
impl RefUnwindSafe for ValidationResult
impl Send for ValidationResult
impl Sync for ValidationResult
impl Unpin for ValidationResult
impl UnsafeUnpin for ValidationResult
impl UnwindSafe for ValidationResult
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