[]Struct rg3d::platform::unix::x11::ffi::XRRCrtcInfo

#[repr(C)]pub struct XRRCrtcInfo {
    pub timestamp: u64,
    pub x: i32,
    pub y: i32,
    pub width: u32,
    pub height: u32,
    pub mode: u64,
    pub rotation: u16,
    pub noutput: i32,
    pub outputs: *mut u64,
    pub rotations: u16,
    pub npossible: i32,
    pub possible: *mut u64,
}

Fields

timestamp: u64x: i32y: i32width: u32height: u32mode: u64rotation: u16noutput: i32outputs: *mut u64rotations: u16npossible: i32possible: *mut u64

Trait Implementations

impl Clone for XRRCrtcInfo

impl Copy for XRRCrtcInfo

impl Debug for XRRCrtcInfo

impl PartialEq<XRRCrtcInfo> for XRRCrtcInfo

impl StructuralPartialEq for XRRCrtcInfo

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> SetParameter for T

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,