Struct lrs::rc::ArcBuf

A buffer used when creating a new Arc.

Syntax

struct ArcBuf<T, Heap = Libc>
    where Heap: Allocator,
          T: Leak,
{
    /* private fields */
}

Methods

ReceiverNameDescription
selfset

Stores a value in the buffer, creating a real Arc.

Trait implementations

NameDescription
Drop

Objects with a destructor.

Send

Objects whose ownership can be moved from one thread to another.

Sync

Objects that allow immutable access from threads other than their owning thread.