Trait symphonia_core::probe::QueryDescriptor
source · pub trait QueryDescriptor {
// Required methods
fn query() -> &'static [Descriptor];
fn score(context: &[u8]) -> u8;
}
Expand description
The QueryDescriptor
trait indicates that the implementer may be registered and capable of
probing.
Required Methods§
sourcefn query() -> &'static [Descriptor]
fn query() -> &'static [Descriptor]
Returns a list of descriptors.
Object Safety§
This trait is not object safe.