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