#[non_exhaustive]pub enum Win32MessageFilterReturn {
Continue,
Remove,
}
Expand description
Specifies the result of applying a GdkWin32MessageFilterFunc
to a Windows message.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for Win32MessageFilterReturn
impl Clone for Win32MessageFilterReturn
Source§fn clone(&self) -> Win32MessageFilterReturn
fn clone(&self) -> Win32MessageFilterReturn
Returns a copy of the value. Read more
1.0.0 · 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 Win32MessageFilterReturn
impl Debug for Win32MessageFilterReturn
Source§impl Hash for Win32MessageFilterReturn
impl Hash for Win32MessageFilterReturn
Source§impl Ord for Win32MessageFilterReturn
impl Ord for Win32MessageFilterReturn
Source§fn cmp(&self, other: &Win32MessageFilterReturn) -> Ordering
fn cmp(&self, other: &Win32MessageFilterReturn) -> Ordering
1.21.0 · 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 Win32MessageFilterReturn
impl PartialEq for Win32MessageFilterReturn
Source§impl PartialOrd for Win32MessageFilterReturn
impl PartialOrd for Win32MessageFilterReturn
impl Copy for Win32MessageFilterReturn
impl Eq for Win32MessageFilterReturn
impl StructuralPartialEq for Win32MessageFilterReturn
Auto Trait Implementations§
impl Freeze for Win32MessageFilterReturn
impl RefUnwindSafe for Win32MessageFilterReturn
impl Send for Win32MessageFilterReturn
impl Sync for Win32MessageFilterReturn
impl Unpin for Win32MessageFilterReturn
impl UnwindSafe for Win32MessageFilterReturn
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