pub enum CallbackSelectorResult {
Processed,
NotProcessed,
}Expand description
Used internally between the callback and callback_selector methods.
It is likely to be removed in the future.
Variants§
Implementations§
Source§impl CallbackSelectorResult
impl CallbackSelectorResult
pub fn is_processed(self) -> bool
Trait Implementations§
Source§impl Clone for CallbackSelectorResult
impl Clone for CallbackSelectorResult
Source§fn clone(&self) -> CallbackSelectorResult
fn clone(&self) -> CallbackSelectorResult
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 PartialEq for CallbackSelectorResult
impl PartialEq for CallbackSelectorResult
Source§fn eq(&self, other: &CallbackSelectorResult) -> bool
fn eq(&self, other: &CallbackSelectorResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CallbackSelectorResult
impl Eq for CallbackSelectorResult
impl StructuralPartialEq for CallbackSelectorResult
Auto Trait Implementations§
impl Freeze for CallbackSelectorResult
impl RefUnwindSafe for CallbackSelectorResult
impl Send for CallbackSelectorResult
impl Sync for CallbackSelectorResult
impl Unpin for CallbackSelectorResult
impl UnsafeUnpin for CallbackSelectorResult
impl UnwindSafe for CallbackSelectorResult
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