pub enum ChangeAction {
None,
Pass,
Remove,
Clear,
}
Expand description
A special action for the layer.
Variants§
None
No special action to the layer.
Pass
Pass the event to the next layer.
Remove
Remove the current layer.
Clear
Remove all layers.
Auto Trait Implementations§
impl Freeze for ChangeAction
impl RefUnwindSafe for ChangeAction
impl Send for ChangeAction
impl Sync for ChangeAction
impl Unpin for ChangeAction
impl UnwindSafe for ChangeAction
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