[][src]Struct tfsi::providers::ProvideArc

pub struct ProvideArc<Output>(_);

A Provide over an Arc<Output>.

If the Value is a Clone, the ProvideArc<Value> can provide Value (by cloning it) and &Value.

If the Value is not a Clone, the ProvideArc<Value> can only provide &Value.

Trait Implementations

impl<T> Clone for ProvideArc<T>[src]

impl<Output: Debug> Debug for ProvideArc<Output>[src]

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

impl<'p, 'd, Output> Provide<'p, 'd, Output, IdxProvideArc> for ProvideArc<Output> where
    'd: 'p,
    Output: 'd,
    Output: Clone
[src]

impl<'p, T> Provide<'p, 'p, &'p T, IdxProvideArc> for ProvideArc<T> where
    T: 'p, 
[src]

Auto Trait Implementations

impl<Output> RefUnwindSafe for ProvideArc<Output> where
    Output: RefUnwindSafe
[src]

impl<Output> Send for ProvideArc<Output> where
    Output: Send + Sync
[src]

impl<Output> Sync for ProvideArc<Output> where
    Output: Send + Sync
[src]

impl<Output> Unpin for ProvideArc<Output>[src]

impl<Output> UnwindSafe for ProvideArc<Output> where
    Output: RefUnwindSafe
[src]

Blanket Implementations

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

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

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

impl<'p, 'd, P, T, I> FitRequirement<'p, 'd, RequireOne<'p, 'd, T>, I> for P where
    'd: 'p,
    P: Provide<'p, 'd, T, I>,
    I: 'p,
    T: 'd, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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.