pub trait BufferTrigger<T> {
// Required methods
fn is_empty(&self) -> bool;
fn len(&self) -> usize;
fn push(&self, value: T);
fn trigger(&self);
}Expand description
common trait
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".