[][src]Enum nom::lib::std::alloc::AllocInit

pub enum AllocInit {
    Uninitialized,
    Zeroed,
}
🔬 This is a nightly-only experimental API. (allocator_api)

A desired initial state for allocated memory.

Variants

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

The contents of the new memory are uninitialized.

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

The new memory is guaranteed to be zeroed.

Implementations

impl AllocInit[src]

pub unsafe fn init(self, memory: MemoryBlock)[src]

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

Initialize the specified memory block.

This behaves like calling AllocInit::init_offset(memory, 0).

Safety

  • memory.ptr must be valid for writes of memory.size bytes.

pub unsafe fn init_offset(self, memory: MemoryBlock, offset: usize)[src]

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

Initialize the memory block like specified by init at the specified offset.

This is a no-op for [AllocInit::Uninitialized][] and writes zeroes for [AllocInit::Zeroed][] at ptr + offset until ptr + layout.size().

Safety

  • memory.ptr must be valid for writes of memory.size bytes.
  • offset must be smaller than or equal to memory.size

Trait Implementations

impl Clone for AllocInit[src]

impl Copy for AllocInit[src]

impl Debug for AllocInit[src]

impl Eq for AllocInit[src]

impl PartialEq<AllocInit> for AllocInit[src]

impl StructuralEq for AllocInit[src]

impl StructuralPartialEq for AllocInit[src]

Auto Trait Implementations

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> 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.