[][src]Struct cart_tmp_wgpu::RequestAdapterOptions

pub struct RequestAdapterOptions<'a> {
    pub power_preference: PowerPreference,
    pub compatible_surface: Option<&'a Surface>,
}

Options for requesting adapter.

Fields

power_preference: PowerPreference

Power preference for the adapter.

compatible_surface: Option<&'a Surface>

Surface that is required to be presentable with the requested adapter. This does not create the surface, only guarantees that the adapter can present to said surface.

Trait Implementations

impl<'a> Clone for RequestAdapterOptions<'a>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.