pub struct TVSBF(/* private fields */);
Available on crate features
kernel
and comctl
only.Expand description
tvm::SetBorder
action
(u32
).
This is a bitflag constant.
Implementations§
Source§impl TVSBF
impl TVSBF
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.
Trait Implementations§
Source§impl BitAndAssign for TVSBF
impl BitAndAssign for TVSBF
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for TVSBF
impl BitOrAssign for TVSBF
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for TVSBF
impl BitXorAssign for TVSBF
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for TVSBF
impl Ord for TVSBF
Source§impl PartialOrd for TVSBF
impl PartialOrd for TVSBF
impl Copy for TVSBF
impl Eq for TVSBF
impl StructuralPartialEq for TVSBF
Auto Trait Implementations§
impl Freeze for TVSBF
impl RefUnwindSafe for TVSBF
impl Send for TVSBF
impl Sync for TVSBF
impl Unpin for TVSBF
impl UnwindSafe for TVSBF
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