#[repr(C)]pub struct _TAPE_GET_DRIVE_PARAMETERS {
pub ECC: BOOLEAN,
pub Compression: BOOLEAN,
pub DataPadding: BOOLEAN,
pub ReportSetmarks: BOOLEAN,
pub DefaultBlockSize: DWORD,
pub MaximumBlockSize: DWORD,
pub MinimumBlockSize: DWORD,
pub MaximumPartitionCount: DWORD,
pub FeaturesLow: DWORD,
pub FeaturesHigh: DWORD,
pub EOTWarningZoneSize: DWORD,
}Fields§
§ECC: BOOLEAN§Compression: BOOLEAN§DataPadding: BOOLEAN§ReportSetmarks: BOOLEAN§DefaultBlockSize: DWORD§MaximumBlockSize: DWORD§MinimumBlockSize: DWORD§MaximumPartitionCount: DWORD§FeaturesLow: DWORD§FeaturesHigh: DWORD§EOTWarningZoneSize: DWORDTrait Implementations§
Source§impl Clone for _TAPE_GET_DRIVE_PARAMETERS
impl Clone for _TAPE_GET_DRIVE_PARAMETERS
Source§fn clone(&self) -> _TAPE_GET_DRIVE_PARAMETERS
fn clone(&self) -> _TAPE_GET_DRIVE_PARAMETERS
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for _TAPE_GET_DRIVE_PARAMETERS
impl Debug for _TAPE_GET_DRIVE_PARAMETERS
impl Copy for _TAPE_GET_DRIVE_PARAMETERS
Auto Trait Implementations§
impl Freeze for _TAPE_GET_DRIVE_PARAMETERS
impl RefUnwindSafe for _TAPE_GET_DRIVE_PARAMETERS
impl Send for _TAPE_GET_DRIVE_PARAMETERS
impl Sync for _TAPE_GET_DRIVE_PARAMETERS
impl Unpin for _TAPE_GET_DRIVE_PARAMETERS
impl UnsafeUnpin for _TAPE_GET_DRIVE_PARAMETERS
impl UnwindSafe for _TAPE_GET_DRIVE_PARAMETERS
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more