pub enum CloakState {
NotCloaked,
App,
Shell,
Inherited,
Unknown(u32),
}Expand description
DWM cloaking state for a window.
Variants§
NotCloaked
Window is not cloaked.
App
Cloaked by application logic.
Shell
Cloaked by the shell.
Inherited
Cloaked by inherited state.
Unknown(u32)
Unknown cloaking bitmask.
Implementations§
Source§impl CloakState
impl CloakState
Trait Implementations§
Source§impl Clone for CloakState
impl Clone for CloakState
Source§fn clone(&self) -> CloakState
fn clone(&self) -> CloakState
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 CloakState
Source§impl Debug for CloakState
impl Debug for CloakState
impl Eq for CloakState
Source§impl PartialEq for CloakState
impl PartialEq for CloakState
Source§fn eq(&self, other: &CloakState) -> bool
fn eq(&self, other: &CloakState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CloakState
Auto Trait Implementations§
impl Freeze for CloakState
impl RefUnwindSafe for CloakState
impl Send for CloakState
impl Sync for CloakState
impl Unpin for CloakState
impl UnsafeUnpin for CloakState
impl UnwindSafe for CloakState
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