Struct gfx::Bind
[−]
.html#6' title='goto source code'>[src]
pub struct Bind { /* fields omitted */ }Bind flags
Methods
impl Bind[src]
fn is_mutable(&self) -> bool
Is this memory bound to be mutated ?
impl Bind.html#41-88' title='goto source code'>[src]
fn empty() -> Bind
Returns an empty set of flags.
fn all() -> Bind
Returns the set containing all flags.
fn bits(&self) -> u8
Returns the raw value of the flags currently stored.
fn from_bits(bits: u8) -> Option<Bind>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
fn from_bits_truncate(bits: u8) -> Bind
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: Bind) -> bool
Returns true if there are flags common to both self and other.
fn contains(&self, other: Bind) -> bool
Returns true all of the flags in other are contained within self.
fn insert(&mut self, other: Bind)
Inserts the specified flags in-place.
fn remove(&mut self, other: Bind)
Removes the specified flags in-place.
fn toggle(&mut self, other: Bind)
Toggles the specified flags in-place.
fn set(&mut self, other: Bind, value: bool)
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Extend<Bind> for Bind.html#127-131' title='goto source code'>[src]
fn extend<T>(&mut self, iterator: T) where
T: IntoIterator<Item = Bind>,
T: IntoIterator<Item = Bind>,
impl PartialOrd<Bind> for Bind.html#5' title='goto source code'>[src]
fn partial_cmp(&self, __arg_0: &Bind) -> Option<Ordering>
fn lt(&self, __arg_0: &Bind) -> bool
fn le(&self, __arg_0: &Bind) -> bool
fn gt(&self, __arg_0: &Bind) -> bool
fn ge(&self, __arg_0: &Bind) -> bool
impl BitOr<Bind> for Bind.html#89-92' title='goto source code'>[src]
impl Copy for Bind.html#5' title='goto source code'>[src]
impl Ord for Bind.html#5' title='goto source code'>[src]
impl BitXorAssign<Bind> for Bind.html#101-105' title='goto source code'>[src]
fn bitxor_assign(&mut self, other: Bind)
Toggles the set of flags.
impl BitOrAssign<Bind> for Bind.html#92-96' title='goto source code'>[src]
fn bitor_assign(&mut self, other: Bind)
Adds the set of flags.
impl PartialEq<Bind> for Bind.html#5' title='goto source code'>[src]
fn eq(&self, __arg_0: &Bind) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Bind) -> bool
This method tests for !=.
impl Sub<Bind> for Bind.html#114-119' title='goto source code'>[src]
type Output = Bind
fn sub(self, other: Bind) -> Bind
Returns the set difference of the two sets of flags.
impl BitAnd<Bind> for Bind.html#105-110' title='goto source code'>[src]
type Output = Bind
fn bitand(self, other: Bind) -> Bind
Returns the intersection between the two sets of flags.
impl BitXor<Bind> for Bind.html#96-101' title='goto source code'>[src]
type Output = Bind
fn bitxor(self, other: Bind) -> Bind
Returns the left flags, but with all the right flags toggled.
impl Eq for Bind.html#5' title='goto source code'>[src]
impl SubAssign<Bind> for Bind.html#119-123' title='goto source code'>[src]
fn sub_assign(&mut self, other: Bind)
Disables all flags enabled in the set.
impl FromIterator<Bind> for Bind.html#131-136' title='goto source code'>[src]
fn from_iter<T>(iterator: T) -> Bind where
T: IntoIterator<Item = Bind>,
T: IntoIterator<Item = Bind>,
impl Hash for Bind.html#5' title='goto source code'>[src]
fn hash<__H>(&self, __arg_0: &mut __H) where
__H: Hasher,
__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
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl BitAndAssign<Bind> for Bind.html#110-114' title='goto source code'>[src]
fn bitand_assign(&mut self, other: Bind)
Disables all flags disabled in the set.
impl Not for Bind.html#123-127' title='goto source code'>[src]
impl Debug for Bind.html#23-40' title='goto source code'>[src]
impl Clone for Bind.html#5' title='goto source code'>[src]
fn clone(&self) -> Bind
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