Struct ocl::flags::ProgramBinaryType
[−]
[src]
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.
Trait Implementations
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 Ord for ProgramBinaryType
fn cmp(&self, __arg_0: &ProgramBinaryType) -> Ordering
impl Not for ProgramBinaryType
type Output = ProgramBinaryType
fn not(self) -> ProgramBinaryType
Returns the complement of this set of flags.
impl PartialEq<ProgramBinaryType> for ProgramBinaryType
fn eq(&self, __arg_0: &ProgramBinaryType) -> bool
fn ne(&self, __arg_0: &ProgramBinaryType) -> bool
impl FromIterator<ProgramBinaryType> for ProgramBinaryType
fn from_iter<T>(iterator: T) -> ProgramBinaryType where T: IntoIterator<Item=ProgramBinaryType>
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 Hash for ProgramBinaryType
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 Debug for ProgramBinaryType
impl BitOr<ProgramBinaryType> for ProgramBinaryType
type Output = ProgramBinaryType
fn bitor(self, other: ProgramBinaryType) -> ProgramBinaryType
Returns the union of the two sets of flags.
impl Copy for ProgramBinaryType
impl Eq for ProgramBinaryType
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 BitAnd<ProgramBinaryType> for ProgramBinaryType
type Output = ProgramBinaryType
fn bitand(self, other: ProgramBinaryType) -> ProgramBinaryType
Returns the intersection between the two sets of flags.