#[repr(C)]pub struct CURSORINFO {
pub cbSize: u32,
pub flags: CURSORINFO_FLAGS,
pub hCursor: HCURSOR,
pub ptScreenPos: POINT,
}
Fields§
§cbSize: u32
§flags: CURSORINFO_FLAGS
§hCursor: HCURSOR
§ptScreenPos: POINT
Trait Implementations§
Source§impl Abi for CURSORINFO
impl Abi for CURSORINFO
Source§type Abi = CURSORINFO
type Abi = CURSORINFO
The abi representation of the implementing type. Read more
type DefaultType = CURSORINFO
Source§fn ok(value: &Self::DefaultType) -> Result<Self, Error>
fn ok(value: &Self::DefaultType) -> Result<Self, Error>
Converts from
Self::DefaultType
to Result<T>
.Source§fn set_abi(&mut self) -> *mut Self::Abi
fn set_abi(&mut self) -> *mut Self::Abi
Returns a pointer for setting the object’s value via an ABI call.
fn drop_param(_: &mut Param<'_, Self>)
Source§impl Clone for CURSORINFO
impl Clone for CURSORINFO
Source§fn clone(&self) -> CURSORINFO
fn clone(&self) -> CURSORINFO
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 moreSource§impl Debug for CURSORINFO
impl Debug for CURSORINFO
Source§impl Default for CURSORINFO
impl Default for CURSORINFO
Source§impl PartialEq for CURSORINFO
impl PartialEq for CURSORINFO
impl Copy for CURSORINFO
impl Eq for CURSORINFO
Auto Trait Implementations§
impl Freeze for CURSORINFO
impl RefUnwindSafe for CURSORINFO
impl Send for CURSORINFO
impl Sync for CURSORINFO
impl Unpin for CURSORINFO
impl UnwindSafe for CURSORINFO
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