Type Alias tendril::ByteTendril

source ·
pub type ByteTendril = Tendril<Bytes>;
Expand description

Tendril for storing binary data.

Aliased Type§

struct ByteTendril {
    ptr: Cell<NonZero<usize>>,
    buf: UnsafeCell<Buffer>,
    marker: PhantomData<*mut Bytes>,
    refcount_marker: PhantomData<NonAtomic>,
}

Fields§

§ptr: Cell<NonZero<usize>>§buf: UnsafeCell<Buffer>§marker: PhantomData<*mut Bytes>§refcount_marker: PhantomData<NonAtomic>