Trait indexical::PointerFamily
source · pub trait PointerFamily {
type Pointer<T: 'static>: Deref<Target = T> + Clone;
}
Expand description
Abstraction over smart pointers with 'static
interiors.
Used so to make the indexical data structures generic with respect
to choice of Rc
or Arc
(or your own clonable smart pointer!).
Required Associated Types§
Object Safety§
This trait is not object safe.