Trait cgp_inner::ProvideInner

source ·
pub trait ProvideInner<Context>
where Context: Async,
{ type Inner: Async; // Required method fn inner(context: &Context) -> &Self::Inner; }

Required Associated Types§

Required Methods§

source

fn inner(context: &Context) -> &Self::Inner

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Component, Context> ProvideInner<Context> for Component
where Context: Async, Component: DelegateComponent<InnerComponent>, Component::Delegate: ProvideInner<Context>,