Struct ocl::flags::ProgramBinaryType
[−]
pub struct ProgramBinaryType { /* fields omitted */ }
cl_program_binary_type
Methods
impl ProgramBinaryType
fn empty() -> ProgramBinaryType
Returns an empty set of flags.
fn all() -> ProgramBinaryType
Returns the set containing all flags.
fn bits(&self) -> u32
Returns the raw value of the flags currently stored.
fn from_bits(bits: u32) -> Option<ProgramBinaryType>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
fn from_bits_truncate(bits: u32) -> ProgramBinaryType
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
fn is_empty(&self) -> bool
Returns true
if no flags are currently stored.
fn is_all(&self) -> bool
Returns true
if all flags are currently set.
fn intersects(&self, other: ProgramBinaryType) -> bool
Returns true
if there are flags common to both self
and other
.
fn contains(&self, other: ProgramBinaryType) -> bool
Returns true
all of the flags in other
are contained within self
.
fn insert(&mut self, other: ProgramBinaryType)
Inserts the specified flags in-place.
fn remove(&mut self, other: ProgramBinaryType)
Removes the specified flags in-place.
fn toggle(&mut self, other: ProgramBinaryType)
Toggles the specified flags in-place.
fn set(&mut self, other: ProgramBinaryType, value: bool)
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Eq for ProgramBinaryType
impl Ord for ProgramBinaryType
fn cmp(&self, __arg_0: &ProgramBinaryType) -> Ordering
impl FromIterator<ProgramBinaryType> for ProgramBinaryType
fn from_iter<T>(iterator: T) -> ProgramBinaryType where
T: IntoIterator<Item = ProgramBinaryType>,
T: IntoIterator<Item = ProgramBinaryType>,
impl BitAnd<ProgramBinaryType> for ProgramBinaryType
type Output = ProgramBinaryType
fn bitand(self, other: ProgramBinaryType) -> ProgramBinaryType
Returns the intersection between the two sets of flags.
impl Copy for ProgramBinaryType
impl BitOrAssign<ProgramBinaryType> for ProgramBinaryType
fn bitor_assign(&mut self, other: ProgramBinaryType)
Adds the set of flags.
impl Sub<ProgramBinaryType> for ProgramBinaryType
type Output = ProgramBinaryType
fn sub(self, other: ProgramBinaryType) -> ProgramBinaryType
Returns the set difference of the two sets of flags.
impl PartialOrd<ProgramBinaryType> for ProgramBinaryType
fn partial_cmp(&self, __arg_0: &ProgramBinaryType) -> Option<Ordering>
fn lt(&self, __arg_0: &ProgramBinaryType) -> bool
fn le(&self, __arg_0: &ProgramBinaryType) -> bool
fn gt(&self, __arg_0: &ProgramBinaryType) -> bool
fn ge(&self, __arg_0: &ProgramBinaryType) -> bool
impl Debug for ProgramBinaryType
impl BitXorAssign<ProgramBinaryType> for ProgramBinaryType
fn bitxor_assign(&mut self, other: ProgramBinaryType)
Toggles the set of flags.
impl PartialEq<ProgramBinaryType> for ProgramBinaryType
fn eq(&self, __arg_0: &ProgramBinaryType) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ProgramBinaryType) -> bool
This method tests for !=
.
impl BitAndAssign<ProgramBinaryType> for ProgramBinaryType
fn bitand_assign(&mut self, other: ProgramBinaryType)
Disables all flags disabled in the set.
impl Clone for ProgramBinaryType
fn clone(&self) -> ProgramBinaryType
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Not for ProgramBinaryType
type Output = ProgramBinaryType
fn not(self) -> ProgramBinaryType
Returns the complement of this set of flags.
impl Extend<ProgramBinaryType> for ProgramBinaryType
fn extend<T>(&mut self, iterator: T) where
T: IntoIterator<Item = ProgramBinaryType>,
T: IntoIterator<Item = ProgramBinaryType>,
impl BitXor<ProgramBinaryType> for ProgramBinaryType
type Output = ProgramBinaryType
fn bitxor(self, other: ProgramBinaryType) -> ProgramBinaryType
Returns the left flags, but with all the right flags toggled.
impl BitOr<ProgramBinaryType> for ProgramBinaryType
type Output = ProgramBinaryType
fn bitor(self, other: ProgramBinaryType) -> ProgramBinaryType
Returns the union of the two sets of flags.
impl SubAssign<ProgramBinaryType> for ProgramBinaryType
fn sub_assign(&mut self, other: ProgramBinaryType)
Disables all flags enabled in the set.