pub struct TapeDriveGetVolumeStatisticsResponseData {Show 26 fields
pub beginning_of_medium_passes: i64,
pub last_load_read_compression_ratio: i64,
pub last_load_write_compression_ratio: i64,
pub last_mount_bytes_read: i64,
pub last_mount_bytes_written: i64,
pub last_mount_unrecovered_read_errors: i64,
pub last_mount_unrecovered_write_errors: i64,
pub lifetime_bytes_read: i64,
pub lifetime_bytes_written: i64,
pub medium_mount_time: i64,
pub medium_ready_time: i64,
pub middle_of_tape_passes: i64,
pub serial: String,
pub total_native_capacity: i64,
pub total_used_native_capacity: i64,
pub volume_datasets_read: i64,
pub volume_datasets_written: i64,
pub volume_mounts: i64,
pub volume_recovered_read_errors: i64,
pub volume_recovered_write_data_errors: i64,
pub volume_unrecovered_read_errors: i64,
pub volume_unrecovered_write_data_errors: i64,
pub volume_unrecovered_write_servo_errors: i64,
pub volume_write_servo_errors: i64,
pub worm: bool,
pub write_protect: bool,
}Fields§
§beginning_of_medium_passes: i64Beginning of medium passes
last_load_read_compression_ratio: i64Last load read compression ratio
last_load_write_compression_ratio: i64Last load write compression ratio
last_mount_bytes_read: i64Last mount bytes read
last_mount_bytes_written: i64Last mount bytes written
last_mount_unrecovered_read_errors: i64Last mount unrecovered read errors
last_mount_unrecovered_write_errors: i64Last mount unrecovered write errors
lifetime_bytes_read: i64Lifetime bytes read
lifetime_bytes_written: i64Lifetime bytes written
medium_mount_time: i64Medium mount time
medium_ready_time: i64Medium ready time
middle_of_tape_passes: i64Middle of medium passes
serial: StringVolume serial number
total_native_capacity: i64Total native capacity
total_used_native_capacity: i64Total used native capacity
volume_datasets_read: i64Total datasets read
volume_datasets_written: i64Total data sets written
volume_mounts: i64Volume mounts (thread count)
volume_recovered_read_errors: i64Total read retries
volume_recovered_write_data_errors: i64Write retries
volume_unrecovered_read_errors: i64Total unrecovered read errors
volume_unrecovered_write_data_errors: i64Total unrecovered write errors
volume_unrecovered_write_servo_errors: i64Total fatal suspended writes
volume_write_servo_errors: i64Total suspended writes
worm: boolVolume is WORM
write_protect: boolWrite protect
Implementations§
Source§impl TapeDriveGetVolumeStatisticsResponseData
impl TapeDriveGetVolumeStatisticsResponseData
pub fn new( beginning_of_medium_passes: i64, last_load_read_compression_ratio: i64, last_load_write_compression_ratio: i64, last_mount_bytes_read: i64, last_mount_bytes_written: i64, last_mount_unrecovered_read_errors: i64, last_mount_unrecovered_write_errors: i64, lifetime_bytes_read: i64, lifetime_bytes_written: i64, medium_mount_time: i64, medium_ready_time: i64, middle_of_tape_passes: i64, serial: String, total_native_capacity: i64, total_used_native_capacity: i64, volume_datasets_read: i64, volume_datasets_written: i64, volume_mounts: i64, volume_recovered_read_errors: i64, volume_recovered_write_data_errors: i64, volume_unrecovered_read_errors: i64, volume_unrecovered_write_data_errors: i64, volume_unrecovered_write_servo_errors: i64, volume_write_servo_errors: i64, worm: bool, write_protect: bool, ) -> TapeDriveGetVolumeStatisticsResponseData
Trait Implementations§
Source§impl Clone for TapeDriveGetVolumeStatisticsResponseData
impl Clone for TapeDriveGetVolumeStatisticsResponseData
Source§fn clone(&self) -> TapeDriveGetVolumeStatisticsResponseData
fn clone(&self) -> TapeDriveGetVolumeStatisticsResponseData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for TapeDriveGetVolumeStatisticsResponseData
impl Default for TapeDriveGetVolumeStatisticsResponseData
Source§fn default() -> TapeDriveGetVolumeStatisticsResponseData
fn default() -> TapeDriveGetVolumeStatisticsResponseData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TapeDriveGetVolumeStatisticsResponseData
impl<'de> Deserialize<'de> for TapeDriveGetVolumeStatisticsResponseData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TapeDriveGetVolumeStatisticsResponseData
impl PartialEq for TapeDriveGetVolumeStatisticsResponseData
Source§fn eq(&self, other: &TapeDriveGetVolumeStatisticsResponseData) -> bool
fn eq(&self, other: &TapeDriveGetVolumeStatisticsResponseData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TapeDriveGetVolumeStatisticsResponseData
Auto Trait Implementations§
impl Freeze for TapeDriveGetVolumeStatisticsResponseData
impl RefUnwindSafe for TapeDriveGetVolumeStatisticsResponseData
impl Send for TapeDriveGetVolumeStatisticsResponseData
impl Sync for TapeDriveGetVolumeStatisticsResponseData
impl Unpin for TapeDriveGetVolumeStatisticsResponseData
impl UnsafeUnpin for TapeDriveGetVolumeStatisticsResponseData
impl UnwindSafe for TapeDriveGetVolumeStatisticsResponseData
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