#[repr(C)]pub struct _cef_cursor_info_t {
pub hotspot: cef_point_t,
pub image_scale_factor: f32,
pub buffer: *mut c_void,
pub size: cef_size_t,
}Expand description
Structure representing cursor information. |buffer| will be |size.width|*|size.height|*4 bytes in size and represents a BGRA image with an upper-left origin.
Fields§
§hotspot: cef_point_t§image_scale_factor: f32§buffer: *mut c_void§size: cef_size_tTrait Implementations§
Source§impl Clone for _cef_cursor_info_t
impl Clone for _cef_cursor_info_t
Source§fn clone(&self) -> _cef_cursor_info_t
fn clone(&self) -> _cef_cursor_info_t
Returns a duplicate 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 moreSource§impl Debug for _cef_cursor_info_t
impl Debug for _cef_cursor_info_t
impl Copy for _cef_cursor_info_t
Auto Trait Implementations§
impl Freeze for _cef_cursor_info_t
impl RefUnwindSafe for _cef_cursor_info_t
impl !Send for _cef_cursor_info_t
impl !Sync for _cef_cursor_info_t
impl Unpin for _cef_cursor_info_t
impl UnwindSafe for _cef_cursor_info_t
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