Trait Buffer

Source
pub trait Buffer: BufMut + 'static {
    type Sealed;

    // Required methods
    fn alloc() -> bool;
    fn with_capacity(cap: usize) -> Self;
    fn seal(self) -> Self::Sealed;
}
Expand description

Associated type for KeyStorage used to build the hash key.

Required Associated Types§

Source

type Sealed

The sealed key type.

Required Methods§

Source

fn alloc() -> bool

Returns whether this buffer allocates on the heap.

Source

fn with_capacity(cap: usize) -> Self

Creates a new buffer with the given capacity.

Source

fn seal(self) -> Self::Sealed

Seals the buffer and returns the sealed key.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Buffer for Vec<u8>

Source§

type Sealed = Box<[u8]>

Source§

fn alloc() -> bool

Source§

fn with_capacity(cap: usize) -> Self

Source§

fn seal(self) -> Self::Sealed

Implementors§

Source§

impl<const N: usize> Buffer for StackBuffer<N>

Source§

type Sealed = [u8; N]