pub struct FixResult {
pub applied: Vec<Fix>,
pub skipped: Vec<(Fix, String)>,
pub errors: Vec<(Fix, String)>,
}Expand description
Result of applying fixes
Fields§
§applied: Vec<Fix>§skipped: Vec<(Fix, String)>§errors: Vec<(Fix, String)>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FixResult
impl RefUnwindSafe for FixResult
impl Send for FixResult
impl Sync for FixResult
impl Unpin for FixResult
impl UnwindSafe for FixResult
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