#[repr(u32)]pub enum drmModeConnectorType {
Show 21 variants
Unknown = 0,
VGA = 1,
DVII = 2,
DVID = 3,
DVIA = 4,
Composite = 5,
SVIDEO = 6,
LVDS = 7,
Component = 8,
DIN_9Pin = 9,
DisplayPort = 10,
HDMIA = 11,
HDMIB = 12,
TV = 13,
eDP = 14,
VIRTUAL = 15,
DSI = 16,
DPI = 17,
WRITEBACK = 18,
SPI = 19,
USB = 20,
}Variants§
Unknown = 0
VGA = 1
DVII = 2
DVID = 3
DVIA = 4
Composite = 5
SVIDEO = 6
LVDS = 7
Component = 8
DIN_9Pin = 9
DisplayPort = 10
HDMIA = 11
HDMIB = 12
TV = 13
eDP = 14
VIRTUAL = 15
DSI = 16
DPI = 17
WRITEBACK = 18
SPI = 19
USB = 20
Trait Implementations§
Source§impl Clone for drmModeConnectorType
impl Clone for drmModeConnectorType
Source§fn clone(&self) -> drmModeConnectorType
fn clone(&self) -> drmModeConnectorType
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 drmModeConnectorType
impl Debug for drmModeConnectorType
Source§impl Display for drmModeConnectorType
impl Display for drmModeConnectorType
Source§impl From<u32> for drmModeConnectorType
impl From<u32> for drmModeConnectorType
Source§fn from(value: u32) -> drmModeConnectorType
fn from(value: u32) -> drmModeConnectorType
Converts to this type from the input type.
Source§impl PartialEq for drmModeConnectorType
impl PartialEq for drmModeConnectorType
Source§impl PartialOrd for drmModeConnectorType
impl PartialOrd for drmModeConnectorType
impl Copy for drmModeConnectorType
impl Eq for drmModeConnectorType
impl StructuralPartialEq for drmModeConnectorType
Auto Trait Implementations§
impl Freeze for drmModeConnectorType
impl RefUnwindSafe for drmModeConnectorType
impl Send for drmModeConnectorType
impl Sync for drmModeConnectorType
impl Unpin for drmModeConnectorType
impl UnwindSafe for drmModeConnectorType
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