pub trait DetectionTransform: CustomTransform {
// Required method
fn can_decode(&self, reader: &mut BinaryReader) -> bool;
}Expand description
A custom transform that can detect whether it can decode an input.
Required Methods§
fn can_decode(&self, reader: &mut BinaryReader) -> 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.