pub trait SoundManagerExt: Sized {
// Required method
fn is_event_playing_with_prefix(self, prefix: impl AsRef<str>) -> bool;
}Required Methods§
fn is_event_playing_with_prefix(self, prefix: impl AsRef<str>) -> bool
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.