Enum arret_runtime::boxed::RecordStorage[][src]

pub enum RecordStorage {
    Inline(BoxSize),
    External,
}

Describes the storage of a record’s data

Variants

Inline(BoxSize)

Record data is stored inline in a box of the given size

External

Record data is stored out-of-line in a 32 byte box

Implementations

impl RecordStorage[src]

pub fn box_size(self) -> BoxSize[src]

Returns the box size for a record storage

Trait Implementations

impl Clone for RecordStorage[src]

impl Debug for RecordStorage[src]

impl PartialEq<RecordStorage> for RecordStorage[src]

impl Copy for RecordStorage[src]

impl StructuralPartialEq for RecordStorage[src]

Auto Trait Implementations

impl RefUnwindSafe for RecordStorage

impl Send for RecordStorage

impl Sync for RecordStorage

impl Unpin for RecordStorage

impl UnwindSafe for RecordStorage

Blanket Implementations

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

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

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

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

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

impl<T> PartialEqInHeap for T where
    T: PartialEq<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.