Struct xproto::xCopyPlaneReq[][src]

#[repr(C)]pub struct xCopyPlaneReq {
    pub reqType: CARD8,
    pub pad: BYTE,
    pub length: CARD16,
    pub srcDrawable: CARD32,
    pub dstDrawable: CARD32,
    pub gc: CARD32,
    pub srcX: INT16,
    pub srcY: INT16,
    pub dstX: INT16,
    pub dstY: INT16,
    pub width: CARD16,
    pub height: CARD16,
    pub bitPlane: CARD32,
}

Fields

reqType: CARD8pad: BYTElength: CARD16srcDrawable: CARD32dstDrawable: CARD32gc: CARD32srcX: INT16srcY: INT16dstX: INT16dstY: INT16width: CARD16height: CARD16bitPlane: CARD32

Trait Implementations

impl Clone for xCopyPlaneReq[src]

impl Copy for xCopyPlaneReq[src]

impl Debug for xCopyPlaneReq[src]

impl Eq for xCopyPlaneReq[src]

impl Parcel for xCopyPlaneReq[src]

impl PartialEq<xCopyPlaneReq> for xCopyPlaneReq[src]

impl StructuralEq for xCopyPlaneReq[src]

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