Enum zbus::DispatchResult
source · pub enum DispatchResult<'a> {
NotFound,
RequiresMut,
Async(Pin<Box<dyn Future<Output = Result<()>> + Send + 'a>>),
}
Expand description
A helper type returned by Interface
callbacks.
Variants§
NotFound
This interface does not support the given method
RequiresMut
Retry with Interface::call_mut.
This is equivalent to NotFound if returned by call_mut.
Async(Pin<Box<dyn Future<Output = Result<()>> + Send + 'a>>)
The method was found and will be completed by running this Future
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DispatchResult<'a>
impl<'a> !RefUnwindSafe for DispatchResult<'a>
impl<'a> Send for DispatchResult<'a>
impl<'a> !Sync for DispatchResult<'a>
impl<'a> Unpin for DispatchResult<'a>
impl<'a> !UnwindSafe for DispatchResult<'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