Struct xproto::xConnClientPrefix[][src]

#[repr(C)]pub struct xConnClientPrefix {
    pub byteOrder: CARD8,
    pub pad: BYTE,
    pub majorVersion: CARD16,
    pub minorVersion: CARD16,
    pub nbytesAuthProto: CARD16,
    pub nbytesAuthString: CARD16,
    pub pad2: CARD16,
}

Connection setup structures. See Chapter 8: Connection Setup of the X Window System Protocol specification for details.

Fields

byteOrder: CARD8pad: BYTEmajorVersion: CARD16minorVersion: CARD16nbytesAuthProto: CARD16nbytesAuthString: CARD16pad2: CARD16

Trait Implementations

impl Clone for xConnClientPrefix[src]

impl Copy for xConnClientPrefix[src]

impl Debug for xConnClientPrefix[src]

impl Eq for xConnClientPrefix[src]

impl Parcel for xConnClientPrefix[src]

impl PartialEq<xConnClientPrefix> for xConnClientPrefix[src]

impl StructuralEq for xConnClientPrefix[src]

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