Trait sel4_abstract_rc::AbstractRcT

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

Required Associated Types§

source

type Rc<T>: AbstractRc<T>

Object Safety§

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>