pub trait FrameAllocator {
    fn alloc(&mut self) -> Option<Frame>;
}
Expand description

Polyfill for default use cases.

Required methods

Implementors