Struct winsafe::msg::WndMsg

source ·
pub struct WndMsg {
    pub msg_id: WM,
    pub wparam: usize,
    pub lparam: isize,
}
Available on crate feature user only.
Expand description

Generic window message parameters: WPARAM and LPARAM.

All message types can be converted to WndMsg via the as_generic_wm method.

Return type: isize.

Fields§

§msg_id: WM

The co::WM constant that identifies the window message.

§wparam: usize

First message parameter.

§lparam: isize

Second message parameter.

Implementations§

source§

impl WndMsg

source

pub const fn new(msg_id: WM, wparam: usize, lparam: isize) -> WndMsg

Creates a new WndMsg from the given message parameters.

Trait Implementations§

source§

impl Clone for WndMsg

source§

fn clone(&self) -> WndMsg

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for WndMsg

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl MsgSend for WndMsg

§

type RetType = isize

The specific type of the value returned by the message.
source§

fn convert_ret(&self, v: isize) -> Self::RetType

Converts the generic isize return value to the specific type returned by the message.
source§

fn as_generic_wm(&mut self) -> Self

Converts the specific message parameters struct into the generic WndMsg message struct.
source§

impl MsgSendRecv for WndMsg

source§

fn from_generic_wm(p: Self) -> Self

Converts the generic WndMsg parameters struct into the specific message struct.
source§

impl Copy for WndMsg

Auto Trait Implementations§

§

impl Freeze for WndMsg

§

impl RefUnwindSafe for WndMsg

§

impl Send for WndMsg

§

impl Sync for WndMsg

§

impl Unpin for WndMsg

§

impl UnwindSafe for WndMsg

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.