pub trait BatchTempo: Sized {
// Required methods
fn inner_tempo(&self) -> Option<u32>;
fn without_tempo(self) -> Option<Self>;
}
Required Methods§
fn inner_tempo(&self) -> Option<u32>
fn without_tempo(self) -> Option<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.