Struct ocl::flags::CommandQueueProperties
[−]
pub struct CommandQueueProperties { /* fields omitted */ }
cl_command_queue_properties - bitfield
Methods
impl CommandQueueProperties
[src]
pub fn new() -> CommandQueueProperties
[src]
pub fn out_of_order(self) -> CommandQueueProperties
[src]
pub fn profiling(self) -> CommandQueueProperties
[src]
impl CommandQueueProperties
pub const OUT_OF_ORDER_EXEC_MODE_ENABLE: CommandQueueProperties
OUT_OF_ORDER_EXEC_MODE_ENABLE: CommandQueueProperties = CommandQueueProperties{bits: 1 << 0,}
pub const PROFILING_ENABLE: CommandQueueProperties
PROFILING_ENABLE: CommandQueueProperties = CommandQueueProperties{bits: 1 << 1,}
pub const ON_DEVICE: CommandQueueProperties
ON_DEVICE: CommandQueueProperties = CommandQueueProperties{bits: 1 << 2,}
pub const ON_DEVICE_DEFAULT: CommandQueueProperties
ON_DEVICE_DEFAULT: CommandQueueProperties = CommandQueueProperties{bits: 1 << 3,}
pub fn empty() -> CommandQueueProperties
Returns an empty set of flags.
pub fn all() -> CommandQueueProperties
Returns the set containing all flags.
pub fn bits(&self) -> u64
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u64) -> Option<CommandQueueProperties>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: u64) -> CommandQueueProperties
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
Returns true
if no flags are currently stored.
pub fn is_all(&self) -> bool
Returns true
if all flags are currently set.
pub fn intersects(&self, other: CommandQueueProperties) -> bool
Returns true
if there are flags common to both self
and other
.
pub fn contains(&self, other: CommandQueueProperties) -> bool
Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: CommandQueueProperties)
Inserts the specified flags in-place.
pub fn remove(&mut self, other: CommandQueueProperties)
Removes the specified flags in-place.
pub fn toggle(&mut self, other: CommandQueueProperties)
Toggles the specified flags in-place.
pub fn set(&mut self, other: CommandQueueProperties, value: bool)
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Default for CommandQueueProperties
[src]
fn default() -> CommandQueueProperties
[src]
Returns the "default value" for a type. Read more
impl Eq for CommandQueueProperties
impl PartialEq<CommandQueueProperties> for CommandQueueProperties
fn eq(&self, __arg_0: &CommandQueueProperties) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &CommandQueueProperties) -> bool
This method tests for !=
.
impl LowerHex for CommandQueueProperties
impl BitOrAssign<CommandQueueProperties> for CommandQueueProperties
fn bitor_assign(&mut self, other: CommandQueueProperties)
Adds the set of flags.
impl BitAndAssign<CommandQueueProperties> for CommandQueueProperties
fn bitand_assign(&mut self, other: CommandQueueProperties)
Disables all flags disabled in the set.
impl Binary for CommandQueueProperties
impl BitOr<CommandQueueProperties> for CommandQueueProperties
type Output = CommandQueueProperties
The resulting type after applying the |
operator.
fn bitor(self, other: CommandQueueProperties) -> CommandQueueProperties
Returns the union of the two sets of flags.
impl Hash for CommandQueueProperties
fn hash<__H>(&self, __arg_0: &mut __H) where
__H: Hasher,
__H: Hasher,
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Extend<CommandQueueProperties> for CommandQueueProperties
fn extend<T>(&mut self, iterator: T) where
T: IntoIterator<Item = CommandQueueProperties>,
T: IntoIterator<Item = CommandQueueProperties>,
Extends a collection with the contents of an iterator. Read more
impl BitXor<CommandQueueProperties> for CommandQueueProperties
type Output = CommandQueueProperties
The resulting type after applying the ^
operator.
fn bitxor(self, other: CommandQueueProperties) -> CommandQueueProperties
Returns the left flags, but with all the right flags toggled.
impl Clone for CommandQueueProperties
fn clone(&self) -> CommandQueueProperties
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl SubAssign<CommandQueueProperties> for CommandQueueProperties
fn sub_assign(&mut self, other: CommandQueueProperties)
Disables all flags enabled in the set.
impl Not for CommandQueueProperties
type Output = CommandQueueProperties
The resulting type after applying the !
operator.
fn not(self) -> CommandQueueProperties
Returns the complement of this set of flags.
impl Ord for CommandQueueProperties
fn cmp(&self, __arg_0: &CommandQueueProperties) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
impl Sub<CommandQueueProperties> for CommandQueueProperties
type Output = CommandQueueProperties
The resulting type after applying the -
operator.
fn sub(self, other: CommandQueueProperties) -> CommandQueueProperties
Returns the set difference of the two sets of flags.
impl UpperHex for CommandQueueProperties
impl Copy for CommandQueueProperties
impl PartialOrd<CommandQueueProperties> for CommandQueueProperties
fn partial_cmp(&self, __arg_0: &CommandQueueProperties) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &CommandQueueProperties) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &CommandQueueProperties) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, __arg_0: &CommandQueueProperties) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &CommandQueueProperties) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Debug for CommandQueueProperties
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl BitXorAssign<CommandQueueProperties> for CommandQueueProperties
fn bitxor_assign(&mut self, other: CommandQueueProperties)
Toggles the set of flags.
impl Octal for CommandQueueProperties
impl BitAnd<CommandQueueProperties> for CommandQueueProperties
type Output = CommandQueueProperties
The resulting type after applying the &
operator.
fn bitand(self, other: CommandQueueProperties) -> CommandQueueProperties
Returns the intersection between the two sets of flags.
impl FromIterator<CommandQueueProperties> for CommandQueueProperties
fn from_iter<T>(iterator: T) -> CommandQueueProperties where
T: IntoIterator<Item = CommandQueueProperties>,
T: IntoIterator<Item = CommandQueueProperties>,
Creates a value from an iterator. Read more