Struct gpu_display::gpu_display_x::xlib::_XImage_funcs
source · #[repr(C)]pub struct _XImage_funcs {
pub create_image: Option<unsafe extern "C" fn(arg1: *mut _XDisplay, arg2: *mut Visual, arg3: c_uint, arg4: c_int, arg5: c_int, arg6: *mut c_char, arg7: c_uint, arg8: c_uint, arg9: c_int, arg10: c_int) -> *mut _XImage>,
pub destroy_image: Option<unsafe extern "C" fn(arg1: *mut _XImage) -> c_int>,
pub get_pixel: Option<unsafe extern "C" fn(arg1: *mut _XImage, arg2: c_int, arg3: c_int) -> c_ulong>,
pub put_pixel: Option<unsafe extern "C" fn(arg1: *mut _XImage, arg2: c_int, arg3: c_int, arg4: c_ulong) -> c_int>,
pub sub_image: Option<unsafe extern "C" fn(arg1: *mut _XImage, arg2: c_int, arg3: c_int, arg4: c_uint, arg5: c_uint) -> *mut _XImage>,
pub add_pixel: Option<unsafe extern "C" fn(arg1: *mut _XImage, arg2: c_long) -> c_int>,
}Fields§
§create_image: Option<unsafe extern "C" fn(arg1: *mut _XDisplay, arg2: *mut Visual, arg3: c_uint, arg4: c_int, arg5: c_int, arg6: *mut c_char, arg7: c_uint, arg8: c_uint, arg9: c_int, arg10: c_int) -> *mut _XImage>§destroy_image: Option<unsafe extern "C" fn(arg1: *mut _XImage) -> c_int>§get_pixel: Option<unsafe extern "C" fn(arg1: *mut _XImage, arg2: c_int, arg3: c_int) -> c_ulong>§put_pixel: Option<unsafe extern "C" fn(arg1: *mut _XImage, arg2: c_int, arg3: c_int, arg4: c_ulong) -> c_int>§sub_image: Option<unsafe extern "C" fn(arg1: *mut _XImage, arg2: c_int, arg3: c_int, arg4: c_uint, arg5: c_uint) -> *mut _XImage>§add_pixel: Option<unsafe extern "C" fn(arg1: *mut _XImage, arg2: c_long) -> c_int>Trait Implementations§
source§impl Clone for _XImage_funcs
impl Clone for _XImage_funcs
source§fn clone(&self) -> _XImage_funcs
fn clone(&self) -> _XImage_funcs
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for _XImage_funcs
Auto Trait Implementations§
impl Freeze for _XImage_funcs
impl RefUnwindSafe for _XImage_funcs
impl Send for _XImage_funcs
impl Sync for _XImage_funcs
impl Unpin for _XImage_funcs
impl UnwindSafe for _XImage_funcs
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.