[][src]Trait gfx_hal::queue::capability::Upper

pub trait Upper {
    type Result;
}

Encoding the minimal capability to support a combination of other capabilities.

Associated Types

type Result

Resulting minimal required capability.

Loading content...

Implementations on Foreign Types

impl<T> Upper for (T, T)[src]

type Result = T

impl Upper for (General, Graphics)[src]

type Result = General

impl Upper for (General, Compute)[src]

type Result = General

impl Upper for (General, Transfer)[src]

type Result = General

impl Upper for (Graphics, General)[src]

type Result = General

impl Upper for (Graphics, Compute)[src]

type Result = General

impl Upper for (Graphics, Transfer)[src]

type Result = Graphics

impl Upper for (Compute, General)[src]

type Result = General

impl Upper for (Compute, Graphics)[src]

type Result = General

impl Upper for (Compute, Transfer)[src]

type Result = Compute

impl Upper for (Transfer, General)[src]

type Result = General

impl Upper for (Transfer, Graphics)[src]

type Result = Graphics

impl Upper for (Transfer, Compute)[src]

type Result = Compute

Loading content...

Implementors

Loading content...