pub struct DiagnoseResult {
pub provider_name: String,
pub total_files: usize,
pub successful: usize,
pub failures: HashMap<FailureType, Vec<FailureExample>>,
}Fields§
§provider_name: String§total_files: usize§successful: usize§failures: HashMap<FailureType, Vec<FailureExample>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiagnoseResult
impl RefUnwindSafe for DiagnoseResult
impl Send for DiagnoseResult
impl Sync for DiagnoseResult
impl Unpin for DiagnoseResult
impl UnwindSafe for DiagnoseResult
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