Trait LoadDriverExt

Source
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.

Required Methods§

Implementations on Foreign Types§

Source§

impl LoadDriverExt for Driver

Implementors§