pub struct Timer {
pub timer_id: usize,
pub timer_proc: Option<TIMERPROC>,
}
Available on crate feature
user
only.Expand description
WM_TIMER
message parameters.
Return type: ()
.
Fields§
§timer_id: usize
§timer_proc: Option<TIMERPROC>
Trait Implementations§
Source§impl MsgSend for Timer
impl MsgSend for Timer
Source§unsafe fn isize_to_ret(&self, _: isize) -> Self::RetType
unsafe fn isize_to_ret(&self, _: isize) -> Self::RetType
Unmarshaling method which converts the generic
isize
return value to
the specific type returned by the message. Read moreSource§fn as_generic_wm(&mut self) -> WndMsg
fn as_generic_wm(&mut self) -> WndMsg
Marshaling method which converts the specific message parameters struct
into the generic
WndMsg
message struct.Source§impl MsgSendRecv for Timer
impl MsgSendRecv for Timer
Auto Trait Implementations§
impl Freeze for Timer
impl RefUnwindSafe for Timer
impl Send for Timer
impl Sync for Timer
impl Unpin for Timer
impl UnwindSafe for Timer
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