Skip to main content

ScratchAvailable

Trait ScratchAvailable 

Source
pub trait ScratchAvailable {
    // Required method
    fn available(&self) -> usize;
}
Expand description

Returns how many bytes left can be taken from the scratch.

Required Methods§

Source

fn available(&self) -> usize

Implementors§

Source§

impl<B> ScratchAvailable for ScratchArena<'_, B>
where B: Backend,