Trait DeviceOps

pub trait DeviceOps:
    Clone
    + Default
    + PartialEq
    + Send
    + Sync
    + Debug
    + Device {
    // Provided method
    fn id(&self) -> DeviceId { ... }
}
Expand description

The handle device trait allows to get an id for a backend device.

Provided Methods§

fn id(&self) -> DeviceId

Returns the device id.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

§

impl DeviceOps for AmdDevice

§

impl DeviceOps for CudaDevice

§

impl DeviceOps for NdArrayDevice

§

impl DeviceOps for WgpuDevice

Implementors§