DetectionTransform

Trait DetectionTransform 

Source
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§

Source

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.

Implementors§