pub struct PatchReport {
pub patched_count: usize,
pub config_path: PathBuf,
pub verified: bool,
pub verification_error: Option<String>,
}Expand description
Report from applying patches.
Fields§
§patched_count: usize§config_path: PathBuf§verified: bool§verification_error: Option<String>Implementations§
Source§impl PatchReport
impl PatchReport
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PatchReport
impl RefUnwindSafe for PatchReport
impl Send for PatchReport
impl Sync for PatchReport
impl Unpin for PatchReport
impl UnwindSafe for PatchReport
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