pub struct WindowStyle(/* private fields */);Expand description
[learn.microsoft.com] WS_* window style flags for create_window_a etc.
Implementations§
Trait Implementations§
Source§impl BitAnd for WindowStyle
impl BitAnd for WindowStyle
Source§impl BitAndAssign for WindowStyle
impl BitAndAssign for WindowStyle
Source§fn bitand_assign(&mut self, other: Self)
fn bitand_assign(&mut self, other: Self)
Performs the
&= operation. Read moreSource§impl BitOr for WindowStyle
impl BitOr for WindowStyle
Source§impl BitOrAssign for WindowStyle
impl BitOrAssign for WindowStyle
Source§fn bitor_assign(&mut self, other: Self)
fn bitor_assign(&mut self, other: Self)
Performs the
|= operation. Read moreSource§impl BitXor for WindowStyle
impl BitXor for WindowStyle
Source§impl BitXorAssign for WindowStyle
impl BitXorAssign for WindowStyle
Source§fn bitxor_assign(&mut self, other: Self)
fn bitxor_assign(&mut self, other: Self)
Performs the
^= operation. Read moreSource§impl Clone for WindowStyle
impl Clone for WindowStyle
Source§fn clone(&self) -> WindowStyle
fn clone(&self) -> WindowStyle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for WindowStyle
Source§impl Debug for WindowStyle
impl Debug for WindowStyle
Source§impl Default for WindowStyle
impl Default for WindowStyle
Source§fn default() -> WindowStyle
fn default() -> WindowStyle
Returns the “default value” for a type. Read more
impl Eq for WindowStyle
Source§impl From<WindowStyle> for u32
impl From<WindowStyle> for u32
Source§fn from(cmd: WindowStyle) -> Self
fn from(cmd: WindowStyle) -> Self
Converts to this type from the input type.
Source§impl From<u32> for WindowStyle
impl From<u32> for WindowStyle
Source§impl Hash for WindowStyle
impl Hash for WindowStyle
Source§impl Not for WindowStyle
impl Not for WindowStyle
Source§impl Ord for WindowStyle
impl Ord for WindowStyle
Source§fn cmp(&self, other: &WindowStyle) -> Ordering
fn cmp(&self, other: &WindowStyle) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WindowStyle
impl PartialEq for WindowStyle
Source§fn eq(&self, other: &WindowStyle) -> bool
fn eq(&self, other: &WindowStyle) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for WindowStyle
impl PartialOrd for WindowStyle
impl StructuralPartialEq for WindowStyle
Auto Trait Implementations§
impl Freeze for WindowStyle
impl RefUnwindSafe for WindowStyle
impl Send for WindowStyle
impl Sync for WindowStyle
impl Unpin for WindowStyle
impl UnsafeUnpin for WindowStyle
impl UnwindSafe for WindowStyle
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