pub struct InheritanceHandler<Params, InheritedParams, H, F> { /* private fields */ }
Trait Implementations§
Source§impl<Context, Params, InheritedParams, H, F> CliBindings<Context> for InheritanceHandler<Params, InheritedParams, H, F>
impl<Context, Params, InheritedParams, H, F> CliBindings<Context> for InheritanceHandler<Params, InheritedParams, H, F>
Source§impl<Params, InheritedParams, H: Clone, F: Clone> Clone for InheritanceHandler<Params, InheritedParams, H, F>
impl<Params, InheritedParams, H: Clone, F: Clone> Clone for InheritanceHandler<Params, InheritedParams, H, F>
Source§impl<Params, InheritedParams, H: Debug, F> Debug for InheritanceHandler<Params, InheritedParams, H, F>
impl<Params, InheritedParams, H: Debug, F> Debug for InheritanceHandler<Params, InheritedParams, H, F>
Source§impl<Context, Params, InheritedParams, H, F> HandlerFor<Context> for InheritanceHandler<Params, InheritedParams, H, F>
impl<Context, Params, InheritedParams, H, F> HandlerFor<Context> for InheritanceHandler<Params, InheritedParams, H, F>
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<Params, InheritedParams, H, F> HandlerTypes for InheritanceHandler<Params, InheritedParams, H, F>
impl<Params, InheritedParams, H, F> HandlerTypes for InheritanceHandler<Params, InheritedParams, H, F>
type Params = <H as HandlerTypes>::Params
type InheritedParams = Flat<Params, InheritedParams>
type Ok = <H as HandlerTypes>::Ok
type Err = <H as HandlerTypes>::Err
Auto Trait Implementations§
impl<Params, InheritedParams, H, F> Freeze for InheritanceHandler<Params, InheritedParams, H, F>
impl<Params, InheritedParams, H, F> RefUnwindSafe for InheritanceHandler<Params, InheritedParams, H, F>
impl<Params, InheritedParams, H, F> Send for InheritanceHandler<Params, InheritedParams, H, F>
impl<Params, InheritedParams, H, F> Sync for InheritanceHandler<Params, InheritedParams, H, F>
impl<Params, InheritedParams, H, F> Unpin for InheritanceHandler<Params, InheritedParams, H, F>
impl<Params, InheritedParams, H, F> UnwindSafe for InheritanceHandler<Params, InheritedParams, H, F>
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