pub struct WindowCandidate {
pub title: String,
pub app: String,
pub z: i32,
}Expand description
A visible window at freeze time, in enumeration order.
Fields§
§title: String§app: String§z: i32Stacking order; higher is closer to the front.
Trait Implementations§
Source§impl Clone for WindowCandidate
impl Clone for WindowCandidate
Source§fn clone(&self) -> WindowCandidate
fn clone(&self) -> WindowCandidate
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 moreSource§impl Debug for WindowCandidate
impl Debug for WindowCandidate
impl Eq for WindowCandidate
Source§impl PartialEq for WindowCandidate
impl PartialEq for WindowCandidate
impl StructuralPartialEq for WindowCandidate
Auto Trait Implementations§
impl Freeze for WindowCandidate
impl RefUnwindSafe for WindowCandidate
impl Send for WindowCandidate
impl Sync for WindowCandidate
impl Unpin for WindowCandidate
impl UnsafeUnpin for WindowCandidate
impl UnwindSafe for WindowCandidate
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.