pub struct CS(/* private fields */);
Available on crate features
kernel
and user
only.Expand description
Window class
styles
(u32
).
This is a bitflag constant.
Implementations§
Source§impl CS
impl CS
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 CS
impl CS
pub const VREDRAW: Self
pub const HREDRAW: Self
pub const DBLCLKS: Self
pub const OWNDC: Self
pub const CLASSDC: Self
pub const PARENTDC: Self
pub const NOCLOSE: Self
pub const SAVEBITS: Self
pub const BYTEALIGNCLIENT: Self
pub const BYTEALIGNWINDOW: Self
pub const GLOBALCLASS: Self
pub const IME: Self
pub const DROPSHADOW: Self
Trait Implementations§
Source§impl BitAndAssign for CS
impl BitAndAssign for CS
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for CS
impl BitOrAssign for CS
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for CS
impl BitXorAssign for CS
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for CS
impl Ord for CS
Source§impl PartialOrd for CS
impl PartialOrd for CS
impl Copy for CS
impl Eq for CS
impl StructuralPartialEq for CS
Auto Trait Implementations§
impl Freeze for CS
impl RefUnwindSafe for CS
impl Send for CS
impl Sync for CS
impl Unpin for CS
impl UnwindSafe for CS
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