pub trait IArcProvider {
    type Ptr<T>: IArc<T>;
}

Required Associated Types§

source

type Ptr<T>: IArc<T>

Implementations on Foreign Types§

source§

impl IArcProvider for Weak<()>

§

type Ptr<T> = Weak<T>

source§

impl IArcProvider for Arc<()>

§

type Ptr<T> = Arc<T>

Implementors§