pub enum CallbackSelectorResult<A>where
A: ManagedTypeApi + ErrorApi,{
Processed,
NotProcessed(CallbackClosureForDeser<A>),
}
Expand description
Used internally between the callback
and callback_selector
methods.
It is likely to be removed in the future.
Variants§
Processed
NotProcessed(CallbackClosureForDeser<A>)
Auto Trait Implementations§
impl<A> Freeze for CallbackSelectorResult<A>
impl<A> RefUnwindSafe for CallbackSelectorResult<A>
impl<A> Send for CallbackSelectorResult<A>
impl<A> Sync for CallbackSelectorResult<A>
impl<A> Unpin for CallbackSelectorResult<A>
impl<A> UnwindSafe for CallbackSelectorResult<A>
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