pub struct CustomPointerIcon { /* private fields */ }Expand description
An application-drawn pointer shape: RGBA pixels plus the hotspot, the pixel inside the image that sits exactly on the pointer’s position.
The alpha channel is not premultiplied, which is what both winit and the browser expect of cursor images.
Implementations§
Source§impl CustomPointerIcon
impl CustomPointerIcon
Sourcepub fn new(
image: ImageBitmap,
hotspot_x: u32,
hotspot_y: u32,
) -> Result<CustomPointerIcon, PointerIconError>
pub fn new( image: ImageBitmap, hotspot_x: u32, hotspot_y: u32, ) -> Result<CustomPointerIcon, PointerIconError>
Builds a custom pointer icon from image, with its hotspot at
(hotspot_x, hotspot_y) pixels from the image’s top-left corner.
Sourcepub fn image(&self) -> &ImageBitmap
pub fn image(&self) -> &ImageBitmap
The icon’s pixels, tightly packed RGBA8 with straight (not premultiplied) alpha.
Trait Implementations§
Source§impl Clone for CustomPointerIcon
impl Clone for CustomPointerIcon
Source§fn clone(&self) -> CustomPointerIcon
fn clone(&self) -> CustomPointerIcon
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CustomPointerIcon
impl Debug for CustomPointerIcon
impl Eq for CustomPointerIcon
Source§impl From<CustomPointerIcon> for PointerIcon
impl From<CustomPointerIcon> for PointerIcon
Source§fn from(icon: CustomPointerIcon) -> PointerIcon
fn from(icon: CustomPointerIcon) -> PointerIcon
Converts to this type from the input type.
Source§impl Hash for CustomPointerIcon
impl Hash for CustomPointerIcon
Source§impl PartialEq for CustomPointerIcon
impl PartialEq for CustomPointerIcon
impl StructuralPartialEq for CustomPointerIcon
Auto Trait Implementations§
impl Freeze for CustomPointerIcon
impl RefUnwindSafe for CustomPointerIcon
impl Send for CustomPointerIcon
impl Sync for CustomPointerIcon
impl Unpin for CustomPointerIcon
impl UnsafeUnpin for CustomPointerIcon
impl UnwindSafe for CustomPointerIcon
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