pub trait SendAbility: Sized {
    fn create_arena<'a>() -> DynamicArena<'a, Self>;
}
Expand description

Marker trait that indicates whether or a DynamicArena may be sent across threads

Required methods

Create an arena corresponding to this type of thread-safety

Implementors