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