pub trait DriverFile {
type Driver: Driver;
// Required method
fn open(device: &Device<Self::Driver>) -> Result<Pin<KBox<Self>>>;
}Expand description
Trait that must be implemented by DRM drivers to represent a DRM File (a client instance).
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".