[][src]Enum dynamic_arena::Sendable

pub enum Sendable {}

Marker type that indicates you expect everything in the DynamicArena to be Send

Although this prevents you from allocating non-Send types in the arena, it allows you to Send the dynamic itself arena across threads. We can't safely implement Send for DynamicArena without this bound, since you could otherwise place a Rc in the arena, send it across threads, and then proceed to drop the arena and mutate the reference count.

Trait Implementations

Auto Trait Implementations

impl Send for Sendable

impl Sync for Sendable

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]