pub struct WithAbout<M, H> { /* private fields */ }
Trait Implementations§
Source§impl<Context, M, H> CliBindings<Context> for WithAbout<M, H>
impl<Context, M, H> CliBindings<Context> for WithAbout<M, H>
Source§impl<Context, M, H> HandlerFor<Context> for WithAbout<M, H>
impl<Context, M, H> HandlerFor<Context> for WithAbout<M, H>
fn handle_sync( &self, _: HandlerArgsFor<Context, Self>, ) -> Result<Self::Ok, Self::Err>
async fn handle_async( &self, __arg1: HandlerArgsFor<Context, Self>, ) -> Result<Self::Ok, Self::Err>
fn metadata( &self, method: VecDeque<&'static str>, ) -> OrdMap<&'static str, Value>
fn method_from_dots(&self, method: &str) -> Option<VecDeque<&'static str>>
fn handle_async_with_sync<'a>( &'a self, handle_args: HandlerArgsFor<Context, Self>, ) -> impl Future<Output = Result<Self::Ok, Self::Err>> + Send + 'a
fn handle_async_with_sync_blocking<'a>( &'a self, handle_args: HandlerArgsFor<Context, Self>, ) -> impl Future<Output = Result<Self::Ok, Self::Err>> + Send + 'a
Source§impl<M, H> HandlerTypes for WithAbout<M, H>where
H: HandlerTypes,
impl<M, H> HandlerTypes for WithAbout<M, H>where
H: HandlerTypes,
type Params = <H as HandlerTypes>::Params
type InheritedParams = <H as HandlerTypes>::InheritedParams
type Ok = <H as HandlerTypes>::Ok
type Err = <H as HandlerTypes>::Err
Auto Trait Implementations§
impl<M, H> Freeze for WithAbout<M, H>
impl<M, H> RefUnwindSafe for WithAbout<M, H>where
H: RefUnwindSafe,
M: RefUnwindSafe,
impl<M, H> Send for WithAbout<M, H>
impl<M, H> Sync for WithAbout<M, H>
impl<M, H> Unpin for WithAbout<M, H>
impl<M, H> UnwindSafe for WithAbout<M, H>where
H: UnwindSafe,
M: UnwindSafe,
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