Trait kernel::drm::file::DriverFile
source · 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§
Object Safety§
This trait is not object safe.