#[repr(C)]pub struct LVITEM<'a> {}
Available on crate feature
comctl
only.Expand description
LVITEM
struct.
Fields§
§mask: LVIF
§iItem: i32
§iSubItem: i32
§state: LVIS
§stateMask: LVIS
§iImage: i32
§lParam: isize
§iIndent: i32
§iGroupId: LVI_GROUPID
§cColumns: u32
§puColumns: *mut i32
§piColFmt: *mut LVCFMT_I
§iGroup: i32
Implementations§
Source§impl<'a> LVITEM<'a>
impl<'a> LVITEM<'a>
Sourcepub const fn raw_pszText(&self) -> (*mut u16, i32)
pub const fn raw_pszText(&self) -> (*mut u16, i32)
Returns the raw pointer to the string field, and its declared size.
This method can be used as an escape hatch to interoperate with other libraries.
Sourcepub fn set_pszText(&mut self, buf: Option<&'a mut WString>)
pub fn set_pszText(&mut self, buf: Option<&'a mut WString>)
Sets the string field.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for LVITEM<'a>
impl<'a> RefUnwindSafe for LVITEM<'a>
impl<'a> !Send for LVITEM<'a>
impl<'a> !Sync for LVITEM<'a>
impl<'a> Unpin for LVITEM<'a>
impl<'a> !UnwindSafe for LVITEM<'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