pub trait DecodeOptions: Send + Sync {
// Provided method
fn parallel(&self) -> bool { ... }
}Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
pub trait DecodeOptions: Send + Sync {
// Provided method
fn parallel(&self) -> bool { ... }
}This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".