pub trait StructuralDecodeArrayTask: Debug + Send {
// Required method
fn decode(self: Box<Self>) -> Result<DecodedArray>;
}Required Methods§
fn decode(self: Box<Self>) -> Result<DecodedArray>
Trait Implementations§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".