Struct ocl_core::DeviceExecCapabilities [−]
pub struct DeviceExecCapabilities { /* fields omitted */ }
cl_device_exec_capabilities - bitfield
Methods
impl DeviceExecCapabilities
impl DeviceExecCapabilities
pub const KERNEL: DeviceExecCapabilities
KERNEL: DeviceExecCapabilities = DeviceExecCapabilities{bits: 1 << 0,}
pub const NATIVE_KERNEL: DeviceExecCapabilities
NATIVE_KERNEL: DeviceExecCapabilities = DeviceExecCapabilities{bits: 1 << 1,}
pub fn empty() -> DeviceExecCapabilities
pub fn empty() -> DeviceExecCapabilities
Returns an empty set of flags.
pub fn all() -> DeviceExecCapabilities
pub fn all() -> DeviceExecCapabilities
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<DeviceExecCapabilities>
pub fn from_bits(bits: u64) -> Option<DeviceExecCapabilities>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: u64) -> DeviceExecCapabilities
pub fn from_bits_truncate(bits: u64) -> DeviceExecCapabilities
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: DeviceExecCapabilities) -> bool
pub fn intersects(&self, other: DeviceExecCapabilities) -> bool
Returns true
if there are flags common to both self
and other
.
pub fn contains(&self, other: DeviceExecCapabilities) -> bool
pub fn contains(&self, other: DeviceExecCapabilities) -> bool
Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: DeviceExecCapabilities)
pub fn insert(&mut self, other: DeviceExecCapabilities)
Inserts the specified flags in-place.
pub fn remove(&mut self, other: DeviceExecCapabilities)
pub fn remove(&mut self, other: DeviceExecCapabilities)
Removes the specified flags in-place.
pub fn toggle(&mut self, other: DeviceExecCapabilities)
pub fn toggle(&mut self, other: DeviceExecCapabilities)
Toggles the specified flags in-place.
pub fn set(&mut self, other: DeviceExecCapabilities, value: bool)
pub fn set(&mut self, other: DeviceExecCapabilities, value: bool)
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Copy for DeviceExecCapabilities
impl Copy for DeviceExecCapabilities
impl PartialEq for DeviceExecCapabilities
impl PartialEq for DeviceExecCapabilities
fn eq(&self, other: &DeviceExecCapabilities) -> bool
fn eq(&self, other: &DeviceExecCapabilities) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &DeviceExecCapabilities) -> bool
fn ne(&self, other: &DeviceExecCapabilities) -> bool
This method tests for !=
.
impl Eq for DeviceExecCapabilities
impl Eq for DeviceExecCapabilities
impl Clone for DeviceExecCapabilities
impl Clone for DeviceExecCapabilities
fn clone(&self) -> DeviceExecCapabilities
fn clone(&self) -> DeviceExecCapabilities
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 PartialOrd for DeviceExecCapabilities
impl PartialOrd for DeviceExecCapabilities
fn partial_cmp(&self, other: &DeviceExecCapabilities) -> Option<Ordering>
fn partial_cmp(&self, other: &DeviceExecCapabilities) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &DeviceExecCapabilities) -> bool
fn lt(&self, other: &DeviceExecCapabilities) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &DeviceExecCapabilities) -> bool
fn le(&self, other: &DeviceExecCapabilities) -> 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: &DeviceExecCapabilities) -> bool
fn gt(&self, other: &DeviceExecCapabilities) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &DeviceExecCapabilities) -> bool
fn ge(&self, other: &DeviceExecCapabilities) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for DeviceExecCapabilities
impl Ord for DeviceExecCapabilities
fn cmp(&self, other: &DeviceExecCapabilities) -> Ordering
fn cmp(&self, other: &DeviceExecCapabilities) -> 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 Hash for DeviceExecCapabilities
impl Hash for DeviceExecCapabilities
fn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)
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 Debug for DeviceExecCapabilities
impl Debug for DeviceExecCapabilities
impl Binary for DeviceExecCapabilities
impl Binary for DeviceExecCapabilities
impl Octal for DeviceExecCapabilities
impl Octal for DeviceExecCapabilities
impl LowerHex for DeviceExecCapabilities
impl LowerHex for DeviceExecCapabilities
impl UpperHex for DeviceExecCapabilities
impl UpperHex for DeviceExecCapabilities
impl BitOr for DeviceExecCapabilities
impl BitOr for DeviceExecCapabilities
type Output = DeviceExecCapabilities
The resulting type after applying the |
operator.
fn bitor(self, other: DeviceExecCapabilities) -> DeviceExecCapabilities
fn bitor(self, other: DeviceExecCapabilities) -> DeviceExecCapabilities
Returns the union of the two sets of flags.
impl BitOrAssign for DeviceExecCapabilities
impl BitOrAssign for DeviceExecCapabilities
fn bitor_assign(&mut self, other: DeviceExecCapabilities)
fn bitor_assign(&mut self, other: DeviceExecCapabilities)
Adds the set of flags.
impl BitXor for DeviceExecCapabilities
impl BitXor for DeviceExecCapabilities
type Output = DeviceExecCapabilities
The resulting type after applying the ^
operator.
fn bitxor(self, other: DeviceExecCapabilities) -> DeviceExecCapabilities
fn bitxor(self, other: DeviceExecCapabilities) -> DeviceExecCapabilities
Returns the left flags, but with all the right flags toggled.
impl BitXorAssign for DeviceExecCapabilities
impl BitXorAssign for DeviceExecCapabilities
fn bitxor_assign(&mut self, other: DeviceExecCapabilities)
fn bitxor_assign(&mut self, other: DeviceExecCapabilities)
Toggles the set of flags.
impl BitAnd for DeviceExecCapabilities
impl BitAnd for DeviceExecCapabilities
type Output = DeviceExecCapabilities
The resulting type after applying the &
operator.
fn bitand(self, other: DeviceExecCapabilities) -> DeviceExecCapabilities
fn bitand(self, other: DeviceExecCapabilities) -> DeviceExecCapabilities
Returns the intersection between the two sets of flags.
impl BitAndAssign for DeviceExecCapabilities
impl BitAndAssign for DeviceExecCapabilities
fn bitand_assign(&mut self, other: DeviceExecCapabilities)
fn bitand_assign(&mut self, other: DeviceExecCapabilities)
Disables all flags disabled in the set.
impl Sub for DeviceExecCapabilities
impl Sub for DeviceExecCapabilities
type Output = DeviceExecCapabilities
The resulting type after applying the -
operator.
fn sub(self, other: DeviceExecCapabilities) -> DeviceExecCapabilities
fn sub(self, other: DeviceExecCapabilities) -> DeviceExecCapabilities
Returns the set difference of the two sets of flags.
impl SubAssign for DeviceExecCapabilities
impl SubAssign for DeviceExecCapabilities
fn sub_assign(&mut self, other: DeviceExecCapabilities)
fn sub_assign(&mut self, other: DeviceExecCapabilities)
Disables all flags enabled in the set.
impl Not for DeviceExecCapabilities
impl Not for DeviceExecCapabilities
type Output = DeviceExecCapabilities
The resulting type after applying the !
operator.
fn not(self) -> DeviceExecCapabilities
fn not(self) -> DeviceExecCapabilities
Returns the complement of this set of flags.
impl Extend<DeviceExecCapabilities> for DeviceExecCapabilities
impl Extend<DeviceExecCapabilities> for DeviceExecCapabilities
fn extend<T: IntoIterator<Item = DeviceExecCapabilities>>(
&mut self,
iterator: T
)
fn extend<T: IntoIterator<Item = DeviceExecCapabilities>>(
&mut self,
iterator: T
)
Extends a collection with the contents of an iterator. Read more
impl FromIterator<DeviceExecCapabilities> for DeviceExecCapabilities
impl FromIterator<DeviceExecCapabilities> for DeviceExecCapabilities
fn from_iter<T: IntoIterator<Item = DeviceExecCapabilities>>(
iterator: T
) -> DeviceExecCapabilities
fn from_iter<T: IntoIterator<Item = DeviceExecCapabilities>>(
iterator: T
) -> DeviceExecCapabilities
Creates a value from an iterator. Read more
Auto Trait Implementations
impl Send for DeviceExecCapabilities
impl Send for DeviceExecCapabilities
impl Sync for DeviceExecCapabilities
impl Sync for DeviceExecCapabilities