Struct xproto::xVisualType[][src]

#[repr(C)]pub struct xVisualType {
    pub visualID: CARD32,
    pub class: CARD8,
    pub bitsPerRGB: CARD8,
    pub colormapEntries: CARD16,
    pub redMask: CARD32,
    pub greenMask: CARD32,
    pub blueMask: CARD32,
    pub pad: CARD32,
}

Fields

visualID: CARD32class: CARD8bitsPerRGB: CARD8colormapEntries: CARD16redMask: CARD32greenMask: CARD32blueMask: CARD32pad: CARD32

Trait Implementations

impl Clone for xVisualType[src]

impl Copy for xVisualType[src]

impl Debug for xVisualType[src]

impl Eq for xVisualType[src]

impl Parcel for xVisualType[src]

impl PartialEq<xVisualType> for xVisualType[src]

impl StructuralEq for xVisualType[src]

impl StructuralPartialEq for xVisualType[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.