[]Struct gdk_x11_sys::xlib::XImage

#[repr(C)]pub struct XImage {
    pub width: i32,
    pub height: i32,
    pub xoffset: i32,
    pub format: i32,
    pub data: *mut i8,
    pub byte_order: i32,
    pub bitmap_unit: i32,
    pub bitmap_bit_order: i32,
    pub bitmap_pad: i32,
    pub depth: i32,
    pub bytes_per_line: i32,
    pub bits_per_pixel: i32,
    pub red_mask: u64,
    pub green_mask: u64,
    pub blue_mask: u64,
    pub obdata: *mut i8,
    pub funcs: ImageFns,
}

Fields

width: i32height: i32xoffset: i32format: i32data: *mut i8byte_order: i32bitmap_unit: i32bitmap_bit_order: i32bitmap_pad: i32depth: i32bytes_per_line: i32bits_per_pixel: i32red_mask: u64green_mask: u64blue_mask: u64obdata: *mut i8funcs: ImageFns

Trait Implementations

impl Clone for XImage

impl Copy for XImage

impl Debug for XImage

impl PartialEq<XImage> for XImage

Auto Trait Implementations

impl RefUnwindSafe for XImage

impl !Send for XImage

impl !Sync for XImage

impl Unpin for XImage

impl UnwindSafe for XImage

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.