pub struct GetGroupRect<'a> {
pub id: u32,
pub flags: LVGGR,
pub rect: &'a mut RECT,
}
Available on crate features
user
and comctl
only.Expand description
LVM_GETGROUPRECT
message parameters.
Return type: SysResult<()>
.
Fields§
§id: u32
§flags: LVGGR
§rect: &'a mut RECT
Trait Implementations§
Source§impl<'a> MsgSend for GetGroupRect<'a>
impl<'a> MsgSend for GetGroupRect<'a>
Source§type RetType = Result<(), ERROR>
type RetType = Result<(), ERROR>
Available on crate feature
user
only.The specific type of the value returned by the message.
Source§unsafe fn isize_to_ret(&self, v: isize) -> Self::RetType
unsafe fn isize_to_ret(&self, v: 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> Freeze for GetGroupRect<'a>
impl<'a> RefUnwindSafe for GetGroupRect<'a>
impl<'a> Send for GetGroupRect<'a>
impl<'a> Sync for GetGroupRect<'a>
impl<'a> Unpin for GetGroupRect<'a>
impl<'a> !UnwindSafe for GetGroupRect<'a>
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