Trait runtime_injector::Request[][src]

pub trait Request: Sized {
    fn request(injector: &mut Injector) -> InjectResult<Self>;
}

A request to an injector.

Required methods

fn request(injector: &mut Injector) -> InjectResult<Self>[src]

Performs the request to the injector.

Loading content...

Implementations on Foreign Types

impl<R: Request> Request for Option<R>[src]

Loading content...

Implementors

impl<I: ?Sized + Interface> Request for Svc<I>[src]

Loading content...