pub trait CheckFeatureSupportwhere
Self: Sized,{
type Args;
// Required method
fn check_feature_support(
device: *mut ID3D11Device,
args: Self::Args,
) -> Result<Self, HResult>;
}Required Associated Types§
Required Methods§
fn check_feature_support( device: *mut ID3D11Device, args: Self::Args, ) -> Result<Self, HResult>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.