pub struct PatchOutcome {
pub bytes_total: u64,
pub bytes_good: u64,
pub bytes_unreadable: u64,
pub bytes_pending: u64,
pub bytes_recovered_this_pass: u64,
pub halted: bool,
pub blocks_attempted: u64,
pub blocks_read_ok: u64,
pub blocks_read_failed: u64,
pub wedged_exit: bool,
pub wedged_threshold: u64,
}Expand description
Result returned by Disc::patch.
Fields§
§bytes_total: u64§bytes_good: u64§bytes_unreadable: u64§bytes_pending: u64§bytes_recovered_this_pass: u64§halted: bool§blocks_attempted: u64§blocks_read_ok: u64§blocks_read_failed: u64§wedged_exit: bool§wedged_threshold: u64Auto Trait Implementations§
impl Freeze for PatchOutcome
impl RefUnwindSafe for PatchOutcome
impl Send for PatchOutcome
impl Sync for PatchOutcome
impl Unpin for PatchOutcome
impl UnsafeUnpin for PatchOutcome
impl UnwindSafe for PatchOutcome
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