[][src]Struct x11_dl::xlib::ImageFns

#[repr(C)]
pub struct ImageFns {
    pub create_image: Option<unsafe extern "C" fn(_: *mut Display, _: *mut Visual, _: c_uint, _: c_int, _: c_int, _: *mut c_char, _: c_uint, _: c_uint, _: c_int, _: c_int) -> *mut XImage>,
    pub destroy_image: Option<unsafe extern "C" fn(_: *mut XImage) -> c_int>,
    pub get_pixel: Option<unsafe extern "C" fn(_: *mut XImage, _: c_int, _: c_int) -> c_ulong>,
    pub put_pixel: Option<unsafe extern "C" fn(_: *mut XImage, _: c_int, _: c_int, _: c_ulong) -> c_int>,
    pub sub_image: Option<unsafe extern "C" fn(_: *mut XImage, _: c_int, _: c_int, _: c_uint, _: c_uint) -> *mut XImage>,
    pub add_pixel: Option<unsafe extern "C" fn(_: *mut XImage, _: c_long) -> c_int>,
}

Fields

create_image: Option<unsafe extern "C" fn(_: *mut Display, _: *mut Visual, _: c_uint, _: c_int, _: c_int, _: *mut c_char, _: c_uint, _: c_uint, _: c_int, _: c_int) -> *mut XImage>destroy_image: Option<unsafe extern "C" fn(_: *mut XImage) -> c_int>get_pixel: Option<unsafe extern "C" fn(_: *mut XImage, _: c_int, _: c_int) -> c_ulong>put_pixel: Option<unsafe extern "C" fn(_: *mut XImage, _: c_int, _: c_int, _: c_ulong) -> c_int>sub_image: Option<unsafe extern "C" fn(_: *mut XImage, _: c_int, _: c_int, _: c_uint, _: c_uint) -> *mut XImage>add_pixel: Option<unsafe extern "C" fn(_: *mut XImage, _: c_long) -> c_int>

Trait Implementations

impl Clone for ImageFns[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<ImageFns> for ImageFns[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Copy for ImageFns[src]

impl Debug for ImageFns[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]