[][src]Struct allocator_suite::memory_sources::rc_memory_source::RcMemorySource

pub struct RcMemorySource<MS: MemorySource>(_);

Represents a Reference-counted (RC) memory source.

Useful when passing in a memory source which does not implement Clone to an allocator.

Methods

impl<MS: MemorySource> RcMemorySource<MS>[src]

pub fn new_thread_local<GTACSA: GlobalSwitchableAllocator>(
    global_allocator: &GTACSA,
    underlying_memory_source: MS
) -> Self
[src]

Creates a new thread-local instance.

pub fn new_coroutine_local<GTACSA: GlobalSwitchableAllocator>(
    global_allocator: &GTACSA,
    underlying_memory_source: MS
) -> Self
[src]

Creates a new coroutine-local instance.

Trait Implementations

impl<MS: MemorySource> MemorySource for RcMemorySource<MS>[src]

impl<MS: MemorySource> Clone for RcMemorySource<MS>[src]

impl<MS: Debug + MemorySource> Debug for RcMemorySource<MS>[src]

impl<MS: MemorySource> Deref for RcMemorySource<MS>[src]

type Target = MS

The resulting type after dereferencing.

Auto Trait Implementations

impl<MS> !Send for RcMemorySource<MS>

impl<MS> !Sync for RcMemorySource<MS>

impl<MS> Unpin for RcMemorySource<MS>

impl<MS> UnwindSafe for RcMemorySource<MS> where
    MS: RefUnwindSafe

impl<MS> !RefUnwindSafe for RcMemorySource<MS>

Blanket Implementations

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

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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