#[repr(C)]pub struct btrfs_ioctl_dev_replace_status_params {
pub replace_state: c_ulonglong,
pub progress_1000: c_ulonglong,
pub time_started: c_ulonglong,
pub time_stopped: c_ulonglong,
pub num_write_errors: c_ulonglong,
pub num_uncorrectable_read_errors: c_ulonglong,
}
Fields§
§replace_state: c_ulonglong
out, see #define above
progress_1000: c_ulonglong
out, 0 <= x <= 1000
time_started: c_ulonglong
out, seconds since 1-Jan-1970
time_stopped: c_ulonglong
out, seconds since 1-Jan-1970
num_write_errors: c_ulonglong
out
num_uncorrectable_read_errors: c_ulonglong
out
Trait Implementations§
Source§impl Clone for btrfs_ioctl_dev_replace_status_params
impl Clone for btrfs_ioctl_dev_replace_status_params
Source§fn clone(&self) -> btrfs_ioctl_dev_replace_status_params
fn clone(&self) -> btrfs_ioctl_dev_replace_status_params
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for btrfs_ioctl_dev_replace_status_params
Auto Trait Implementations§
impl Freeze for btrfs_ioctl_dev_replace_status_params
impl RefUnwindSafe for btrfs_ioctl_dev_replace_status_params
impl Send for btrfs_ioctl_dev_replace_status_params
impl Sync for btrfs_ioctl_dev_replace_status_params
impl Unpin for btrfs_ioctl_dev_replace_status_params
impl UnwindSafe for btrfs_ioctl_dev_replace_status_params
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