pub trait HardwareAcceleration {
// Provided method
fn hardware_accelerated(&self, operation: HardwareOperation) -> bool { ... }
}Expand description
Hardware acceleration traits for future optimized implementations.
This trait provides hooks for hardware-accelerated operations that may be available on specialized hardware or through optimized libraries.
Provided Methods§
Sourcefn hardware_accelerated(&self, operation: HardwareOperation) -> bool
fn hardware_accelerated(&self, operation: HardwareOperation) -> bool
Check if hardware acceleration is available for this operation.