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 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 PartialEq for CallbackSelectorResult
impl PartialEq for CallbackSelectorResult
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 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