pub trait DecodePageTask: Send + Debug {
// Required method
fn decode(self: Box<Self>) -> Result<DecodedPage>;
}Required Methods§
Sourcefn decode(self: Box<Self>) -> Result<DecodedPage>
fn decode(self: Box<Self>) -> Result<DecodedPage>
Decodes the data into an Arrow array
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".