Enum wdk_build::DriverConfig
source · pub enum DriverConfig {
WDM(),
KMDF(KMDFConfig),
UMDF(UMDFConfig),
}
Expand description
The driver type with its associated configuration parameters
Variants§
WDM()
Windows Driver Model
KMDF(KMDFConfig)
Kernel Mode Driver Framework
UMDF(UMDFConfig)
User Mode Driver Framework
Trait Implementations§
source§impl Clone for DriverConfig
impl Clone for DriverConfig
source§fn clone(&self) -> DriverConfig
fn clone(&self) -> DriverConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DriverConfig
impl Debug for DriverConfig
source§impl<'de> Deserialize<'de> for DriverConfig
impl<'de> Deserialize<'de> for DriverConfig
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for DriverConfig
impl PartialEq for DriverConfig
source§fn eq(&self, other: &DriverConfig) -> bool
fn eq(&self, other: &DriverConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for DriverConfig
impl Serialize for DriverConfig
impl Eq for DriverConfig
impl StructuralPartialEq for DriverConfig
Auto Trait Implementations§
impl RefUnwindSafe for DriverConfig
impl Send for DriverConfig
impl Sync for DriverConfig
impl Unpin for DriverConfig
impl UnwindSafe for DriverConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more