pub struct ConnectorInfo {
pub connector_id: u32,
pub connector_type: drmModeConnectorType,
pub connector_type_id: u32,
pub connection: drmModeConnection,
pub mode_info: Vec<drmModeModeInfo>,
pub mode_props: Vec<(ModeProp, u64)>,
pub crtc: Option<drmModeCrtc>,
}Fields§
§connector_id: u32§connector_type: drmModeConnectorType§connector_type_id: u32§connection: drmModeConnection§mode_info: Vec<drmModeModeInfo>§mode_props: Vec<(ModeProp, u64)>§crtc: Option<drmModeCrtc>Implementations§
Trait Implementations§
Source§impl Clone for ConnectorInfo
impl Clone for ConnectorInfo
Source§fn clone(&self) -> ConnectorInfo
fn clone(&self) -> ConnectorInfo
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 moreAuto Trait Implementations§
impl Freeze for ConnectorInfo
impl RefUnwindSafe for ConnectorInfo
impl Send for ConnectorInfo
impl Sync for ConnectorInfo
impl Unpin for ConnectorInfo
impl UnwindSafe for ConnectorInfo
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