pub struct TVIS(/* private fields */);
Available on crate features
kernel
and comctl
only.Expand description
Tree view item
states
(u32
)
This is a bitflag constant.
Implementations§
Source§impl TVIS
impl TVIS
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 TVIS
impl TVIS
pub const SELECTED: Self
pub const CUT: Self
pub const DROPHILITED: Self
pub const BOLD: Self
pub const EXPANDED: Self
pub const EXPANDEDONCE: Self
pub const EXPANDPARTIAL: Self
pub const OVERLAYMASK: Self
pub const STATEIMAGEMASK: Self
pub const USERMASK: Self
Trait Implementations§
Source§impl BitAndAssign for TVIS
impl BitAndAssign for TVIS
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for TVIS
impl BitOrAssign for TVIS
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for TVIS
impl BitXorAssign for TVIS
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for TVIS
impl Ord for TVIS
Source§impl PartialOrd for TVIS
impl PartialOrd for TVIS
impl Copy for TVIS
impl Eq for TVIS
impl StructuralPartialEq for TVIS
Auto Trait Implementations§
impl Freeze for TVIS
impl RefUnwindSafe for TVIS
impl Send for TVIS
impl Sync for TVIS
impl Unpin for TVIS
impl UnwindSafe for TVIS
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