_STORAGE_MEDIA_TYPE

Enum _STORAGE_MEDIA_TYPE 

Source
#[repr(i32)]
pub enum _STORAGE_MEDIA_TYPE {
Show 63 variants DDS_4mm = 32, MiniQic = 33, Travan = 34, QIC = 35, MP_8mm = 36, AME_8mm = 37, AIT1_8mm = 38, DLT = 39, NCTP = 40, IBM_3480 = 41, IBM_3490E = 42, IBM_Magstar_3590 = 43, IBM_Magstar_MP = 44, STK_DATA_D3 = 45, SONY_DTF = 46, DV_6mm = 47, DMI = 48, SONY_D2 = 49, CLEANER_CARTRIDGE = 50, CD_ROM = 51, CD_R = 52, CD_RW = 53, DVD_ROM = 54, DVD_R = 55, DVD_RW = 56, MO_3_RW = 57, MO_5_WO = 58, MO_5_RW = 59, MO_5_LIMDOW = 60, PC_5_WO = 61, PC_5_RW = 62, PD_5_RW = 63, ABL_5_WO = 64, PINNACLE_APEX_5_RW = 65, SONY_12_WO = 66, PHILIPS_12_WO = 67, HITACHI_12_WO = 68, CYGNET_12_WO = 69, KODAK_14_WO = 70, MO_NFR_525 = 71, NIKON_12_RW = 72, IOMEGA_ZIP = 73, IOMEGA_JAZ = 74, SYQUEST_EZ135 = 75, SYQUEST_EZFLYER = 76, SYQUEST_SYJET = 77, AVATAR_F2 = 78, MP2_8mm = 79, DST_S = 80, DST_M = 81, DST_L = 82, VXATape_1 = 83, VXATape_2 = 84, STK_9840 = 85, LTO_Ultrium = 86, LTO_Accelis = 87, DVD_RAM = 88, AIT_8mm = 89, ADR_1 = 90, ADR_2 = 91, STK_9940 = 92, SAIT = 93, VXATape = 94,
}

Variants§

§

DDS_4mm = 32

§

MiniQic = 33

§

Travan = 34

§

QIC = 35

§

MP_8mm = 36

§

AME_8mm = 37

§

AIT1_8mm = 38

§

DLT = 39

§

NCTP = 40

§

IBM_3480 = 41

§

IBM_3490E = 42

§

IBM_Magstar_3590 = 43

§

IBM_Magstar_MP = 44

§

STK_DATA_D3 = 45

§

SONY_DTF = 46

§

DV_6mm = 47

§

DMI = 48

§

SONY_D2 = 49

§

CLEANER_CARTRIDGE = 50

§

CD_ROM = 51

§

CD_R = 52

§

CD_RW = 53

§

DVD_ROM = 54

§

DVD_R = 55

§

DVD_RW = 56

§

MO_3_RW = 57

§

MO_5_WO = 58

§

MO_5_RW = 59

§

MO_5_LIMDOW = 60

§

PC_5_WO = 61

§

PC_5_RW = 62

§

PD_5_RW = 63

§

ABL_5_WO = 64

§

PINNACLE_APEX_5_RW = 65

§

SONY_12_WO = 66

§

PHILIPS_12_WO = 67

§

HITACHI_12_WO = 68

§

CYGNET_12_WO = 69

§

KODAK_14_WO = 70

§

MO_NFR_525 = 71

§

NIKON_12_RW = 72

§

IOMEGA_ZIP = 73

§

IOMEGA_JAZ = 74

§

SYQUEST_EZ135 = 75

§

SYQUEST_EZFLYER = 76

§

SYQUEST_SYJET = 77

§

AVATAR_F2 = 78

§

MP2_8mm = 79

§

DST_S = 80

§

DST_M = 81

§

DST_L = 82

§

VXATape_1 = 83

§

VXATape_2 = 84

§

STK_9840 = 85

§

LTO_Ultrium = 86

§

LTO_Accelis = 87

§

DVD_RAM = 88

§

AIT_8mm = 89

§

ADR_1 = 90

§

ADR_2 = 91

§

STK_9940 = 92

§

SAIT = 93

§

VXATape = 94

Trait Implementations§

Source§

impl Clone for _STORAGE_MEDIA_TYPE

Source§

fn clone(&self) -> _STORAGE_MEDIA_TYPE

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for _STORAGE_MEDIA_TYPE

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for _STORAGE_MEDIA_TYPE

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for _STORAGE_MEDIA_TYPE

Source§

fn eq(&self, other: &_STORAGE_MEDIA_TYPE) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for _STORAGE_MEDIA_TYPE

Source§

impl Eq for _STORAGE_MEDIA_TYPE

Source§

impl StructuralPartialEq for _STORAGE_MEDIA_TYPE

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.