#[repr(u32)]pub enum VesaDddbInterfaceType {
Show 15 variants
VGA = 0,
NAVI_V = 1,
NAVI_D = 2,
LVDS = 3,
RSDS = 4,
DVI_D = 5,
DVI_I_ANALOG = 6,
DVI_I_DIGITAL = 7,
HDMI_A = 8,
HDMI_B = 9,
MDDI = 10,
DISPLAYPORT = 11,
IEEE_1394 = 12,
M1_ANALOG = 13,
M1_DIGITAL = 14,
}👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadExpand description
Interface types, defined in VESA DDDB section 2.3.1 and 2.3.2.
Note, the enum values don’t match the specification.
Variants§
VGA = 0
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadNAVI_V = 1
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadNAVI_D = 2
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadLVDS = 3
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadRSDS = 4
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadDVI_D = 5
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadDVI_I_ANALOG = 6
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadDVI_I_DIGITAL = 7
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadHDMI_A = 8
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadHDMI_B = 9
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadMDDI = 10
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadDISPLAYPORT = 11
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadIEEE_1394 = 12
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadM1_ANALOG = 13
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadM1_DIGITAL = 14
👎Deprecated since 0.3.0: use
VesaDisplayDeviceInterfaceType insteadTrait Implementations§
Source§impl Clone for VesaDddbInterfaceType
impl Clone for VesaDddbInterfaceType
Source§fn clone(&self) -> VesaDddbInterfaceType
fn clone(&self) -> VesaDddbInterfaceType
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 VesaDddbInterfaceType
impl Debug for VesaDddbInterfaceType
Source§impl From<u32> for VesaDddbInterfaceType
impl From<u32> for VesaDddbInterfaceType
Source§fn from(value: di_cta_vesa_dddb_interface_type) -> VesaDddbInterfaceType
fn from(value: di_cta_vesa_dddb_interface_type) -> VesaDddbInterfaceType
Converts to this type from the input type.
Source§impl PartialEq for VesaDddbInterfaceType
impl PartialEq for VesaDddbInterfaceType
impl Copy for VesaDddbInterfaceType
impl Eq for VesaDddbInterfaceType
impl StructuralPartialEq for VesaDddbInterfaceType
Auto Trait Implementations§
impl Freeze for VesaDddbInterfaceType
impl RefUnwindSafe for VesaDddbInterfaceType
impl Send for VesaDddbInterfaceType
impl Sync for VesaDddbInterfaceType
impl Unpin for VesaDddbInterfaceType
impl UnwindSafe for VesaDddbInterfaceType
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