Trait cgp_inner::HasInner

source ·
pub trait HasInner: Async {
    type Inner: Async;

    // Required method
    fn inner(&self) -> &Self::Inner;
}

Required Associated Types§

Required Methods§

source

fn inner(&self) -> &Self::Inner

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Context> HasInner for Context
where Context: Async + HasComponents, Context::Components: ProvideInner<Context>,

source§

type Inner = <<Context as HasComponents>::Components as ProvideInner<Context>>::Inner