pub trait Probe<T: Descriptor + ?Sized> {
    fn probe(&self, data: &[u8]) -> Option<&'static T>;
}
Expand description

Used to define different ways to probe a format.

Required Methods

Probes whether the input data is associated to a determined format.

Implementations on Foreign Types

Implementors