pub struct SetSel {
pub select: bool,
pub index: Option<u32>,
}
Available on crate feature
user
only.Expand description
LB_SETSEL
message parameters.
Return type: SysResult<()>
.
Fields§
§select: bool
§index: Option<u32>
Trait Implementations§
Source§impl MsgSend for SetSel
impl MsgSend for SetSel
Source§unsafe fn isize_to_ret(&self, v: isize) -> Self::RetType
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 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.Auto Trait Implementations§
impl Freeze for SetSel
impl RefUnwindSafe for SetSel
impl Send for SetSel
impl Sync for SetSel
impl Unpin for SetSel
impl UnwindSafe for SetSel
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