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

#[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]

impl Copy for ImageFns[src]

impl Debug for ImageFns[src]

impl PartialEq<ImageFns> for ImageFns[src]

Auto Trait Implementations

impl RefUnwindSafe for ImageFns

impl Send for ImageFns

impl Sync for ImageFns

impl Unpin for ImageFns

impl UnwindSafe for ImageFns

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.