sel4_abstract_rc

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", so this trait is not object safe.

Implementors§

Source§

impl AbstractRcT for ArcT

Source§

type Rc<T> = Arc<T>

Source§

impl AbstractRcT for RcT

Source§

type Rc<T> = Rc<T>