pub trait LoadDriverExt {
// Required methods
fn try_load(&self) -> Result<ArcDriver, DriverLoadError>;
fn try_load_with_resolution(
&self,
resolution: &Resolution,
) -> Result<ArcDriver, DriverLoadError>;
}
Expand description
Shortcuts for loading drivers directly from the Driver
enum.