Trait sodoken::buffer::AsBufExtend[][src]

pub trait AsBufExtend: AsBufWrite {
    fn extend_lock(&self) -> ExtendGuard<'_>;
}
Expand description

A buffer that may be appended to and may or may not be mem_locked.

Required methods

Obtain access to extend the underlying buffer. Warning: Depending on the underlying data type, each new ExtendGuard could be a new cursor… i.e. pulling a new extend lock could overwrite previous data.

Implementations on Foreign Types

Implementors