pub struct GetItem<'a, 'b> {
pub index: u32,
pub hditem: &'b mut HDITEM<'a>,
}
Available on crate features
user
and comctl
only.Expand description
HDM_GETITEM
message parameters.
Return type: ()
.
Fields§
§index: u32
§hditem: &'b mut HDITEM<'a>
Trait Implementations§
Source§impl<'a, 'b> MsgSend for GetItem<'a, 'b>
impl<'a, 'b> MsgSend for GetItem<'a, 'b>
Source§type RetType = ()
type RetType = ()
Available on crate feature
user
only.The specific type of the value returned by the message.
Source§unsafe fn isize_to_ret(&self, _: isize) -> Self::RetType
unsafe fn isize_to_ret(&self, _: isize) -> Self::RetType
Available on crate feature
user
only.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
Available on crate feature
user
only.Marshaling method which converts the specific message parameters struct
into the generic
WndMsg
message struct.Auto Trait Implementations§
impl<'a, 'b> Freeze for GetItem<'a, 'b>
impl<'a, 'b> RefUnwindSafe for GetItem<'a, 'b>
impl<'a, 'b> !Send for GetItem<'a, 'b>
impl<'a, 'b> !Sync for GetItem<'a, 'b>
impl<'a, 'b> Unpin for GetItem<'a, 'b>
impl<'a, 'b> !UnwindSafe for GetItem<'a, 'b>
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