[][src]Struct x11::xrandr::XRRModeInfo

#[repr(C)]
pub struct XRRModeInfo {
    pub id: RRMode,
    pub width: c_uint,
    pub height: c_uint,
    pub dotClock: c_ulong,
    pub hSyncStart: c_uint,
    pub hSyncEnd: c_uint,
    pub hTotal: c_uint,
    pub hSkew: c_uint,
    pub vSyncStart: c_uint,
    pub vSyncEnd: c_uint,
    pub vTotal: c_uint,
    pub name: *mut c_char,
    pub nameLength: c_uint,
    pub modeFlags: XRRModeFlags,
}

Fields

id: RRModewidth: c_uintheight: c_uintdotClock: c_ulonghSyncStart: c_uinthSyncEnd: c_uinthTotal: c_uinthSkew: c_uintvSyncStart: c_uintvSyncEnd: c_uintvTotal: c_uintname: *mut c_charnameLength: c_uintmodeFlags: XRRModeFlags

Trait Implementations

impl Clone for XRRModeInfo[src]

impl Copy for XRRModeInfo[src]

impl Debug for XRRModeInfo[src]

impl PartialEq<XRRModeInfo> for XRRModeInfo[src]

impl StructuralPartialEq for XRRModeInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.