pub enum Propagation {
    Stop,
    Proceed,
}Expand description
Whether to invoke the other event handlers.
Stop and Proceed map to GDK_EVENT_STOP (true) and
GDK_EVENT_PROPAGATE (false), respectively.
Variants§
Implementations§
Source§impl Propagation
 
impl Propagation
Trait Implementations§
Source§impl Clone for Propagation
 
impl Clone for Propagation
Source§fn clone(&self) -> Propagation
 
fn clone(&self) -> Propagation
Returns a duplicate 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 Propagation
 
impl Debug for Propagation
Source§impl From<Propagation> for Value
 
impl From<Propagation> for Value
Source§fn from(v: Propagation) -> Self
 
fn from(v: Propagation) -> Self
Converts to this type from the input type.
Source§impl From<Propagation> for bool
 
impl From<Propagation> for bool
Source§fn from(c: Propagation) -> Self
 
fn from(c: Propagation) -> Self
Converts to this type from the input type.
Source§impl From<bool> for Propagation
 
impl From<bool> for Propagation
Source§impl PartialEq for Propagation
 
impl PartialEq for Propagation
Source§impl ToValue for Propagation
 
impl ToValue for Propagation
impl Copy for Propagation
impl Eq for Propagation
impl StructuralPartialEq for Propagation
Auto Trait Implementations§
impl Freeze for Propagation
impl RefUnwindSafe for Propagation
impl Send for Propagation
impl Sync for Propagation
impl Unpin for Propagation
impl UnwindSafe for Propagation
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> IntoClosureReturnValue for T
 
impl<T> IntoClosureReturnValue for T
fn into_closure_return_value(self) -> Option<Value>
Source§impl<T> ToSendValue for T
 
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
 
fn to_send_value(&self) -> SendValue
Returns a 
SendValue clone of self.