#[repr(i32)]pub enum _STORAGE_PROTOCOL_TYPE {
ProtocolTypeUnknown = 0,
ProtocolTypeScsi = 1,
ProtocolTypeAta = 2,
ProtocolTypeNvme = 3,
ProtocolTypeSd = 4,
ProtocolTypeUfs = 5,
ProtocolTypeProprietary = 126,
ProtocolTypeMaxReserved = 127,
}Variants§
ProtocolTypeUnknown = 0
ProtocolTypeScsi = 1
ProtocolTypeAta = 2
ProtocolTypeNvme = 3
ProtocolTypeSd = 4
ProtocolTypeUfs = 5
ProtocolTypeProprietary = 126
ProtocolTypeMaxReserved = 127
Trait Implementations§
Source§impl Clone for _STORAGE_PROTOCOL_TYPE
impl Clone for _STORAGE_PROTOCOL_TYPE
Source§fn clone(&self) -> _STORAGE_PROTOCOL_TYPE
fn clone(&self) -> _STORAGE_PROTOCOL_TYPE
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 _STORAGE_PROTOCOL_TYPE
impl Debug for _STORAGE_PROTOCOL_TYPE
Source§impl Hash for _STORAGE_PROTOCOL_TYPE
impl Hash for _STORAGE_PROTOCOL_TYPE
Source§impl PartialEq for _STORAGE_PROTOCOL_TYPE
impl PartialEq for _STORAGE_PROTOCOL_TYPE
impl Copy for _STORAGE_PROTOCOL_TYPE
impl Eq for _STORAGE_PROTOCOL_TYPE
impl StructuralPartialEq for _STORAGE_PROTOCOL_TYPE
Auto Trait Implementations§
impl Freeze for _STORAGE_PROTOCOL_TYPE
impl RefUnwindSafe for _STORAGE_PROTOCOL_TYPE
impl Send for _STORAGE_PROTOCOL_TYPE
impl Sync for _STORAGE_PROTOCOL_TYPE
impl Unpin for _STORAGE_PROTOCOL_TYPE
impl UnwindSafe for _STORAGE_PROTOCOL_TYPE
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