[][src]Struct dynamic_ocl::queue::QueueProperties

#[repr(transparent)]
pub struct QueueProperties(_);

Special command queue properties

Methods

impl QueueProperties[src]

pub const OUT_OF_ORDER_EXEC_MODE_ENABLE: QueueProperties[src]

pub const PROFILING_ENABLE: QueueProperties[src]

pub const ON_DEVICE: QueueProperties[src]

pub const ON_DEVICE_DEFAULT: QueueProperties[src]

pub const unsafe fn new(value: cl_command_queue_properties) -> Self[src]

Create a new wrapped bitfield from the given raw bitfield value.

Safety

This function can be used to create bitfields representing non-existent flags. You must ensure that the resulting bitfield is legal anywhere it's used.

pub const fn raw(self) -> cl_command_queue_properties[src]

Unwrap this bitfield into the underlying value

pub const fn contains(self, other: Self) -> bool[src]

Check whether this bitfield is equal to or a superset of a given bitfield

Trait Implementations

impl BitAnd<QueueProperties> for QueueProperties[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAndAssign<QueueProperties> for QueueProperties[src]

impl BitOr<QueueProperties> for QueueProperties[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOrAssign<QueueProperties> for QueueProperties[src]

impl BitXor<QueueProperties> for QueueProperties[src]

type Output = Self

The resulting type after applying the ^ operator.

impl BitXorAssign<QueueProperties> for QueueProperties[src]

impl Clone for QueueProperties[src]

impl Copy for QueueProperties[src]

impl Debug for QueueProperties[src]

impl Eq for QueueProperties[src]

impl FromOclInfo for QueueProperties[src]

impl Hash for QueueProperties[src]

impl PartialEq<QueueProperties> for QueueProperties[src]

impl StructuralEq for QueueProperties[src]

impl StructuralPartialEq for QueueProperties[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> Same<T> for T

type Output = T

Should always be Self

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.