pub struct TVM(/* private fields */);
Available on crate features
kernel
and comctl
only.Implementations§
Source§impl TVM
impl TVM
Sourcepub const unsafe fn as_mut(&mut self) -> &mut u32
pub const unsafe fn as_mut(&mut self) -> &mut u32
Returns a mutable reference to the underlying raw value.
§Safety
Be sure the integer being set is meaningful for the actual type.
Sourcepub const unsafe fn from_raw(v: u32) -> Self
pub const unsafe fn from_raw(v: u32) -> Self
Constructs a new object by wrapping the given integer value.
§Safety
Be sure the given value is meaningful for the actual type.
Sourcepub const fn raw(&self) -> u32
pub const fn raw(&self) -> u32
Returns the primitive integer underlying value.
This method is similar to Into
, but it
is const
, therefore it can be used in
const contexts.
Source§impl TVM
impl TVM
pub const INSERTITEM: Self
pub const DELETEITEM: Self
pub const EXPAND: Self
pub const GETITEMRECT: Self
pub const GETCOUNT: Self
pub const GETINDENT: Self
pub const SETINDENT: Self
pub const GETIMAGELIST: Self
pub const SETIMAGELIST: Self
pub const GETNEXTITEM: Self
pub const SELECTITEM: Self
pub const GETITEM: Self
pub const SETITEM: Self
pub const EDITLABEL: Self
pub const GETEDITCONTROL: Self
pub const GETVISIBLECOUNT: Self
pub const HITTEST: Self
pub const CREATEDRAGIMAGE: Self
pub const SORTCHILDREN: Self
pub const ENSUREVISIBLE: Self
pub const SORTCHILDRENCB: Self
pub const ENDEDITLABELNOW: Self
pub const GETISEARCHSTRING: Self
pub const SETTOOLTIPS: Self
pub const GETTOOLTIPS: Self
pub const SETINSERTMARK: Self
pub const SETUNICODEFORMAT: Self
pub const GETUNICODEFORMAT: Self
pub const SETITEMHEIGHT: Self
pub const GETITEMHEIGHT: Self
pub const SETBKCOLOR: Self
pub const SETTEXTCOLOR: Self
pub const GETBKCOLOR: Self
pub const GETTEXTCOLOR: Self
pub const SETSCROLLTIME: Self
pub const GETSCROLLTIME: Self
pub const SETINSERTMARKCOLOR: Self
pub const GETINSERTMARKCOLOR: Self
pub const SETBORDER: Self
pub const GETITEMSTATE: Self
pub const SETLINECOLOR: Self
pub const GETLINECOLOR: Self
pub const MAPACCIDTOHTREEITEM: Self
pub const MAPHTREEITEMTOACCID: Self
pub const SETEXTENDEDSTYLE: Self
pub const GETEXTENDEDSTYLE: Self
pub const SETAUTOSCROLLINFO: Self
pub const SETHOT: Self
pub const GETSELECTEDCOUNT: Self
pub const SHOWINFOTIP: Self
pub const GETITEMPARTRECT: Self
Trait Implementations§
Source§impl BitAndAssign for TVM
impl BitAndAssign for TVM
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for TVM
impl BitOrAssign for TVM
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for TVM
impl BitXorAssign for TVM
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for TVM
impl Ord for TVM
Source§impl PartialOrd for TVM
impl PartialOrd for TVM
impl Copy for TVM
impl Eq for TVM
impl StructuralPartialEq for TVM
Auto Trait Implementations§
impl Freeze for TVM
impl RefUnwindSafe for TVM
impl Send for TVM
impl Sync for TVM
impl Unpin for TVM
impl UnwindSafe for TVM
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