Skip to main content

AbstractRcT

Trait AbstractRcT 

Source
pub trait AbstractRcT {
    type Rc<T>: AbstractRc<T>;
}

Required Associated Types§

Source

type Rc<T>: AbstractRc<T>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl AbstractRcT for ArcT

Source§

type Rc<T> = Arc<T>

Source§

impl AbstractRcT for RcT

Source§

type Rc<T> = Rc<T>