Struct gpio_cdev::EventRequestFlags [−]
pub struct EventRequestFlags { /* fields omitted */ }Methods
impl EventRequestFlags
impl EventRequestFlagspub const RISING_EDGE: EventRequestFlags
RISING_EDGE: EventRequestFlags = EventRequestFlags{bits: 1 << 0,}
pub const FALLING_EDGE: EventRequestFlags
FALLING_EDGE: EventRequestFlags = EventRequestFlags{bits: 1 << 1,}
pub const BOTH_EDGES: EventRequestFlags
BOTH_EDGES: EventRequestFlags = EventRequestFlags{bits: <Self>::RISING_EDGE.bits | <Self>::FALLING_EDGE.bits,}
pub fn empty() -> EventRequestFlags
pub fn empty() -> EventRequestFlagsReturns an empty set of flags.
pub fn all() -> EventRequestFlags
pub fn all() -> EventRequestFlagsReturns the set containing all flags.
pub fn bits(&self) -> uint32_t
pub fn bits(&self) -> uint32_tReturns the raw value of the flags currently stored.
pub fn from_bits(bits: uint32_t) -> Option<EventRequestFlags>
pub fn from_bits(bits: uint32_t) -> Option<EventRequestFlags>Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: uint32_t) -> EventRequestFlags
pub fn from_bits_truncate(bits: uint32_t) -> EventRequestFlagsConvert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> boolReturns true if no flags are currently stored.
pub fn is_all(&self) -> bool
pub fn is_all(&self) -> boolReturns true if all flags are currently set.
pub fn intersects(&self, other: EventRequestFlags) -> bool
pub fn intersects(&self, other: EventRequestFlags) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: EventRequestFlags) -> bool
pub fn contains(&self, other: EventRequestFlags) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: EventRequestFlags)
pub fn insert(&mut self, other: EventRequestFlags)Inserts the specified flags in-place.
pub fn remove(&mut self, other: EventRequestFlags)
pub fn remove(&mut self, other: EventRequestFlags)Removes the specified flags in-place.
pub fn toggle(&mut self, other: EventRequestFlags)
pub fn toggle(&mut self, other: EventRequestFlags)Toggles the specified flags in-place.
pub fn set(&mut self, other: EventRequestFlags, value: bool)
pub fn set(&mut self, other: EventRequestFlags, value: bool)Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Copy for EventRequestFlags
impl Copy for EventRequestFlagsimpl PartialEq for EventRequestFlags
impl PartialEq for EventRequestFlagsfn eq(&self, other: &EventRequestFlags) -> bool
fn eq(&self, other: &EventRequestFlags) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &EventRequestFlags) -> bool
fn ne(&self, other: &EventRequestFlags) -> boolThis method tests for !=.
impl Eq for EventRequestFlags
impl Eq for EventRequestFlagsimpl Clone for EventRequestFlags
impl Clone for EventRequestFlagsfn clone(&self) -> EventRequestFlags
fn clone(&self) -> EventRequestFlagsReturns 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 PartialOrd for EventRequestFlags
impl PartialOrd for EventRequestFlagsfn partial_cmp(&self, other: &EventRequestFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &EventRequestFlags) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &EventRequestFlags) -> bool
fn lt(&self, other: &EventRequestFlags) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &EventRequestFlags) -> bool
fn le(&self, other: &EventRequestFlags) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &EventRequestFlags) -> bool
fn gt(&self, other: &EventRequestFlags) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &EventRequestFlags) -> bool
fn ge(&self, other: &EventRequestFlags) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for EventRequestFlags
impl Ord for EventRequestFlagsfn cmp(&self, other: &EventRequestFlags) -> Ordering
fn cmp(&self, other: &EventRequestFlags) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for EventRequestFlags
impl Hash for EventRequestFlagsfn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)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 Debug for EventRequestFlags
impl Debug for EventRequestFlagsimpl Binary for EventRequestFlags
impl Binary for EventRequestFlagsimpl Octal for EventRequestFlags
impl Octal for EventRequestFlagsimpl LowerHex for EventRequestFlags
impl LowerHex for EventRequestFlagsimpl UpperHex for EventRequestFlags
impl UpperHex for EventRequestFlagsimpl BitOr for EventRequestFlags
impl BitOr for EventRequestFlagstype Output = EventRequestFlags
The resulting type after applying the | operator.
fn bitor(self, other: EventRequestFlags) -> EventRequestFlags
fn bitor(self, other: EventRequestFlags) -> EventRequestFlagsReturns the union of the two sets of flags.
impl BitOrAssign for EventRequestFlags
impl BitOrAssign for EventRequestFlagsfn bitor_assign(&mut self, other: EventRequestFlags)
fn bitor_assign(&mut self, other: EventRequestFlags)Adds the set of flags.
impl BitXor for EventRequestFlags
impl BitXor for EventRequestFlagstype Output = EventRequestFlags
The resulting type after applying the ^ operator.
fn bitxor(self, other: EventRequestFlags) -> EventRequestFlags
fn bitxor(self, other: EventRequestFlags) -> EventRequestFlagsReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for EventRequestFlags
impl BitXorAssign for EventRequestFlagsfn bitxor_assign(&mut self, other: EventRequestFlags)
fn bitxor_assign(&mut self, other: EventRequestFlags)Toggles the set of flags.
impl BitAnd for EventRequestFlags
impl BitAnd for EventRequestFlagstype Output = EventRequestFlags
The resulting type after applying the & operator.
fn bitand(self, other: EventRequestFlags) -> EventRequestFlags
fn bitand(self, other: EventRequestFlags) -> EventRequestFlagsReturns the intersection between the two sets of flags.
impl BitAndAssign for EventRequestFlags
impl BitAndAssign for EventRequestFlagsfn bitand_assign(&mut self, other: EventRequestFlags)
fn bitand_assign(&mut self, other: EventRequestFlags)Disables all flags disabled in the set.
impl Sub for EventRequestFlags
impl Sub for EventRequestFlagstype Output = EventRequestFlags
The resulting type after applying the - operator.
fn sub(self, other: EventRequestFlags) -> EventRequestFlags
fn sub(self, other: EventRequestFlags) -> EventRequestFlagsReturns the set difference of the two sets of flags.
impl SubAssign for EventRequestFlags
impl SubAssign for EventRequestFlagsfn sub_assign(&mut self, other: EventRequestFlags)
fn sub_assign(&mut self, other: EventRequestFlags)Disables all flags enabled in the set.
impl Not for EventRequestFlags
impl Not for EventRequestFlagstype Output = EventRequestFlags
The resulting type after applying the ! operator.
fn not(self) -> EventRequestFlags
fn not(self) -> EventRequestFlagsReturns the complement of this set of flags.
impl Extend<EventRequestFlags> for EventRequestFlags
impl Extend<EventRequestFlags> for EventRequestFlagsfn extend<T: IntoIterator<Item = EventRequestFlags>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = EventRequestFlags>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<EventRequestFlags> for EventRequestFlags
impl FromIterator<EventRequestFlags> for EventRequestFlagsfn from_iter<T: IntoIterator<Item = EventRequestFlags>>(
iterator: T
) -> EventRequestFlags
fn from_iter<T: IntoIterator<Item = EventRequestFlags>>(
iterator: T
) -> EventRequestFlagsCreates a value from an iterator. Read more
Auto Trait Implementations
impl Send for EventRequestFlags
impl Send for EventRequestFlagsimpl Sync for EventRequestFlags
impl Sync for EventRequestFlags