Struct runtime_injector_actix::InterfaceProvider[][src]

pub struct InterfaceProvider<I, P> where
    P: TypedProvider,
    I: InterfaceFor<<P as TypedProvider>::Result> + ?Sized
{ /* fields omitted */ }
Expand description

Provides a service as an implementation of an interface. See TypedProvider::with_interface() for more information.

Trait Implementations

impl<I, P> Provider for InterfaceProvider<I, P> where
    P: TypedProvider,
    I: InterfaceFor<<P as TypedProvider>::Result> + ?Sized
[src]

pub fn result(&self) -> ServiceInfo[src]

The ServiceInfo which describes the type returned by this provider.

pub fn provide(
    &mut self,
    injector: &Injector,
    request_info: &RequestInfo
) -> Result<Arc<dyn Any + 'static + Sync + Send>, InjectError>
[src]

Provides an instance of the service.

pub fn provide_owned(
    &mut self,
    injector: &Injector,
    request_info: &RequestInfo
) -> Result<Box<dyn Any + 'static + Sync + Send, Global>, InjectError>
[src]

Provides an owned instance of the service.

Auto Trait Implementations

impl<I: ?Sized, P> RefUnwindSafe for InterfaceProvider<I, P> where
    P: RefUnwindSafe

impl<I: ?Sized, P> Send for InterfaceProvider<I, P>

impl<I: ?Sized, P> Sync for InterfaceProvider<I, P>

impl<I: ?Sized, P> Unpin for InterfaceProvider<I, P> where
    P: Unpin

impl<I: ?Sized, P> UnwindSafe for InterfaceProvider<I, P> where
    P: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> AsAny for T where
    T: Any
[src]

pub fn as_any(&self) -> &(dyn Any + 'static)[src]

Converts self into a trait object.

pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)[src]

Converts self into a mutable trait object.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T> Interface for T where
    T: Service
[src]

pub fn downcast(
    service: Arc<dyn Any + 'static + Sync + Send>
) -> Result<Arc<T>, InjectError>
[src]

Downcasts a dynamic service pointer into a service pointer of this interface type. Read more

pub fn downcast_owned(
    service: Box<dyn Any + 'static + Sync + Send, Global>
) -> Result<Box<T, Global>, InjectError>
[src]

Downcasts an owned dynamic service pointer into an owned service pointer of this interface type. Read more

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V

impl<T> InterfaceFor<T> for T where
    T: Service
[src]

impl<T> Service for T where
    T: Any + Send + Sync + ?Sized
[src]