Struct runtime_injector_actix::Arg[][src]

pub struct Arg<T>(_)
where
    T: Service + AsAny + Clone
;
Expand description

Allows custom pre-defined values to be passed as arguments to services.

Example

use runtime_injector::{Arg, Injector, IntoTransient, WithArg};

struct Foo(Arg<i32>);

let mut builder = Injector::builder();
builder.provide(Foo.transient());
builder.with_arg::<Foo, i32>(12);

let injector = builder.build();
let foo: Box<Foo> = injector.get().unwrap();
assert_eq!(12, *foo.0);

Implementations

impl<T> Arg<T> where
    T: Service + AsAny + Clone
[src]

pub fn into_inner(arg: Arg<T>) -> T[src]

Converts an argument into its inner value.

Trait Implementations

impl<T> Deref for Arg<T> where
    T: Service + AsAny + Clone
[src]

type Target = T

The resulting type after dereferencing.

pub fn deref(&self) -> &<Arg<T> as Deref>::Target[src]

Dereferences the value.

impl<T> DerefMut for Arg<T> where
    T: Service + AsAny + Clone
[src]

pub fn deref_mut(&mut self) -> &mut <Arg<T> as Deref>::Target[src]

Mutably dereferences the value.

impl<T> Request for Arg<T> where
    T: Service + AsAny + Clone
[src]

Allows custom pre-defined values to be passed as arguments to services.

pub fn request(
    _injector: &Injector,
    info: &RequestInfo
) -> Result<Arg<T>, InjectError>
[src]

Performs the request to the injector.

Auto Trait Implementations

impl<T> RefUnwindSafe for Arg<T> where
    T: RefUnwindSafe

impl<T> Send for Arg<T>

impl<T> Sync for Arg<T>

impl<T> Unpin for Arg<T> where
    T: Unpin

impl<T> UnwindSafe for Arg<T> where
    T: 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]