Skip to main content

WmNcCalcSize

Struct WmNcCalcSize 

Source
pub struct WmNcCalcSize<'a, 'b> {
    pub data: NccspRect<'a, 'b>,
}
Available on crate feature user only.
Expand description

WM_NCCALCSIZE message parameters.

Return type: co::WVR.

Fields§

§data: NccspRect<'a, 'b>

Trait Implementations§

Source§

impl<'a, 'b> MsgSend for WmNcCalcSize<'a, 'b>

Source§

type RetType = WVR

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

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

Unmarshaling method which converts the generic isize return value to the specific type returned by the message. Read more
Source§

fn as_generic_wm(&mut self) -> Wm

Marshaling method which converts the specific message parameters struct into the generic Wm message struct.
Source§

impl<'a, 'b> MsgSendRecv for WmNcCalcSize<'a, 'b>

Source§

unsafe fn from_generic_wm(p: Wm) -> Self

Unmarshaling method which converts the generic Wm parameters struct into the specific message struct. Read more

Auto Trait Implementations§

§

impl<'a, 'b> !Send for WmNcCalcSize<'a, 'b>

§

impl<'a, 'b> !Sync for WmNcCalcSize<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for WmNcCalcSize<'a, 'b>

§

impl<'a, 'b> Freeze for WmNcCalcSize<'a, 'b>

§

impl<'a, 'b> RefUnwindSafe for WmNcCalcSize<'a, 'b>

§

impl<'a, 'b> Unpin for WmNcCalcSize<'a, 'b>

§

impl<'a, 'b> UnsafeUnpin for WmNcCalcSize<'a, 'b>

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

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

Source§

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.