#[repr(C)]pub enum WuiCoordCheckResult {
HitUi = 0,
HitNotUi = 1,
}Variants§
HitUi = 0
The click was executed over a colored pixel RGBA != 0 for any values
HitNotUi = 1
The click was executed over an empty pixel RGBA == 0 for all values
Auto Trait Implementations§
impl Freeze for WuiCoordCheckResult
impl RefUnwindSafe for WuiCoordCheckResult
impl Send for WuiCoordCheckResult
impl Sync for WuiCoordCheckResult
impl Unpin for WuiCoordCheckResult
impl UnwindSafe for WuiCoordCheckResult
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