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