[][src]Struct adxl345_driver::IntSource

pub struct IntSource { /* fields omitted */ }

Interrupt source bit flags use by interrupt_source() method.

Implementations

impl IntSource[src]

pub const DATA_READY: IntSource[src]

Function triggered DATA_READY event.

Event always visible here.

Cleared by reading data from the data registers. May require multiple reads.

pub const SINGLE_TAP: IntSource[src]

Function triggered SINGLE_TAP event.

Interrupt must be enabled to see here.

pub const DOUBLE_TAP: IntSource[src]

Function triggered DOUBLE_TAP event.

Interrupt must be enabled to see here.

pub const ACTIVITY: IntSource[src]

Function triggered ACTIVITY event.

Interrupt must be enabled to see here.

pub const INACTIVITY: IntSource[src]

Function triggered INACTIVITY event.

Interrupt must be enabled to see here.

pub const FREE_FALL: IntSource[src]

Function triggered FREE_FALL event.

Interrupt must be enabled to see here.

pub const WATERMARK: IntSource[src]

Function triggered WATERMARK event.

Event always visible here.

Cleared by reading data from the data registers. May require multiple reads.

pub const OVERRUN: IntSource[src]

Function triggered OVERRUN event.

Event always visible here.

Cleared by reading data from the data registers.

pub const fn empty() -> IntSource[src]

Returns an empty set of flags

pub const fn all() -> IntSource[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u8[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u8) -> Option<IntSource>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u8) -> IntSource[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u8) -> IntSource[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: IntSource) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: IntSource) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: IntSource)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: IntSource)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: IntSource)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: IntSource, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for IntSource[src]

impl BitAnd<IntSource> for IntSource[src]

type Output = IntSource

The resulting type after applying the & operator.

fn bitand(self, other: IntSource) -> IntSource[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<IntSource> for IntSource[src]

fn bitand_assign(&mut self, other: IntSource)[src]

Disables all flags disabled in the set.

impl BitOr<IntSource> for IntSource[src]

type Output = IntSource

The resulting type after applying the | operator.

fn bitor(self, other: IntSource) -> IntSource[src]

Returns the union of the two sets of flags.

impl BitOrAssign<IntSource> for IntSource[src]

fn bitor_assign(&mut self, other: IntSource)[src]

Adds the set of flags.

impl BitXor<IntSource> for IntSource[src]

type Output = IntSource

The resulting type after applying the ^ operator.

fn bitxor(self, other: IntSource) -> IntSource[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<IntSource> for IntSource[src]

fn bitxor_assign(&mut self, other: IntSource)[src]

Toggles the set of flags.

impl Clone for IntSource[src]

impl Copy for IntSource[src]

impl Debug for IntSource[src]

impl Default for IntSource[src]

impl Eq for IntSource[src]

impl Extend<IntSource> for IntSource[src]

impl FromIterator<IntSource> for IntSource[src]

impl Hash for IntSource[src]

impl LowerHex for IntSource[src]

impl Not for IntSource[src]

type Output = IntSource

The resulting type after applying the ! operator.

fn not(self) -> IntSource[src]

Returns the complement of this set of flags.

impl Octal for IntSource[src]

impl Ord for IntSource[src]

impl PartialEq<IntSource> for IntSource[src]

impl PartialOrd<IntSource> for IntSource[src]

impl StructuralEq for IntSource[src]

impl StructuralPartialEq for IntSource[src]

impl Sub<IntSource> for IntSource[src]

type Output = IntSource

The resulting type after applying the - operator.

fn sub(self, other: IntSource) -> IntSource[src]

Returns the set difference of the two sets of flags.

impl SubAssign<IntSource> for IntSource[src]

fn sub_assign(&mut self, other: IntSource)[src]

Disables all flags enabled in the set.

impl UpperHex for IntSource[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.