pub struct TTI(/* private fields */);
Available on crate features
kernel
and comctl
only.Expand description
EDITBALLOONTIP
ttiIcon (i32
).
Implementations§
Source§impl TTI
impl TTI
Sourcepub const unsafe fn as_mut(&mut self) -> &mut i32
pub const unsafe fn as_mut(&mut self) -> &mut i32
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: i32) -> Self
pub const unsafe fn from_raw(v: i32) -> 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) -> i32
pub const fn raw(&self) -> i32
Returns the primitive integer underlying value.
This method is similar to Into
, but it
is const
, therefore it can be used in
const contexts.
Trait Implementations§
Source§impl Ord for TTI
impl Ord for TTI
Source§impl PartialOrd for TTI
impl PartialOrd for TTI
impl Copy for TTI
impl Eq for TTI
impl StructuralPartialEq for TTI
Auto Trait Implementations§
impl Freeze for TTI
impl RefUnwindSafe for TTI
impl Send for TTI
impl Sync for TTI
impl Unpin for TTI
impl UnwindSafe for TTI
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