pub struct TVS(/* private fields */);
Available on crate features
kernel
and comctl
only.Implementations§
Source§impl TVS
impl TVS
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 TVS
impl TVS
pub const HASBUTTONS: Self
pub const HASLINES: Self
pub const LINESATROOT: Self
pub const EDITLABELS: Self
pub const DISABLEDRAGDROP: Self
pub const SHOWSELALWAYS: Self
pub const RTLREADING: Self
pub const NOTOOLTIPS: Self
pub const CHECKBOXES: Self
pub const TRACKSELECT: Self
pub const SINGLEEXPAND: Self
pub const INFOTIP: Self
pub const FULLROWSELECT: Self
pub const NOSCROLL: Self
pub const NONEVENHEIGHT: Self
pub const NOHSCROLL: Self
Trait Implementations§
Source§impl BitAndAssign for TVS
impl BitAndAssign for TVS
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for TVS
impl BitOrAssign for TVS
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for TVS
impl BitXorAssign for TVS
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for TVS
impl Ord for TVS
Source§impl PartialOrd for TVS
impl PartialOrd for TVS
impl Copy for TVS
impl Eq for TVS
impl StructuralPartialEq for TVS
Auto Trait Implementations§
impl Freeze for TVS
impl RefUnwindSafe for TVS
impl Send for TVS
impl Sync for TVS
impl Unpin for TVS
impl UnwindSafe for TVS
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