pub trait ResettableBuffer {
// Required methods
fn push(&mut self, value: Action);
fn clear(&mut self);
}Expand description
A buffer used to store the sequence of actions traversed during the selection phase.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".