pub type DecodeFn = Box<dyn Fn(&[u8]) -> Result<ImageData> + Send + Sync>;
Decode callback type.
Takes encoded bytes, returns decoded image data.
pub struct DecodeFn(/* private fields */);