pub struct ClosingWindow;Expand description
Marks a window that has been requested to close
Trait Implementations§
Source§impl Clone for ClosingWindow
impl Clone for ClosingWindow
Source§fn clone(&self) -> ClosingWindow
fn clone(&self) -> ClosingWindow
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 ClosingWindow
Source§impl Debug for ClosingWindow
impl Debug for ClosingWindow
Source§impl Default for ClosingWindow
impl Default for ClosingWindow
Source§fn default() -> ClosingWindow
fn default() -> ClosingWindow
Returns the “default value” for a type. Read more
impl Eq for ClosingWindow
Source§impl Hash for ClosingWindow
impl Hash for ClosingWindow
Source§impl Ord for ClosingWindow
impl Ord for ClosingWindow
Source§fn cmp(&self, other: &ClosingWindow) -> Ordering
fn cmp(&self, other: &ClosingWindow) -> 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 ClosingWindow
impl PartialEq for ClosingWindow
Source§fn eq(&self, other: &ClosingWindow) -> bool
fn eq(&self, other: &ClosingWindow) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ClosingWindow
impl PartialOrd for ClosingWindow
impl StructuralPartialEq for ClosingWindow
Auto Trait Implementations§
impl Freeze for ClosingWindow
impl RefUnwindSafe for ClosingWindow
impl Send for ClosingWindow
impl Sync for ClosingWindow
impl Unpin for ClosingWindow
impl UnsafeUnpin for ClosingWindow
impl UnwindSafe for ClosingWindow
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more