[][src]Struct axp173::ChargingCurrent

pub struct ChargingCurrent { /* fields omitted */ }

Possible values of charging current of AXP173 in milliAmperes

Implementations

impl ChargingCurrent[src]

pub const CURRENT_100MA: ChargingCurrent[src]

100 mA current.

pub const CURRENT_190MA: ChargingCurrent[src]

190 mA current.

pub const CURRENT_280MA: ChargingCurrent[src]

280 mA current.

pub const CURRENT_360MA: ChargingCurrent[src]

360 mA current.

pub const CURRENT_450MA: ChargingCurrent[src]

450 mA current.

pub const CURRENT_550MA: ChargingCurrent[src]

550 mA current.

pub const CURRENT_630MA: ChargingCurrent[src]

630 mA current.

pub const CURRENT_700MA: ChargingCurrent[src]

700 mA current.

pub const CURRENT_780MA: ChargingCurrent[src]

780 mA current. Default.

pub const CURRENT_880MA: ChargingCurrent[src]

880 mA current.

pub const CURRENT_960MA: ChargingCurrent[src]

960 mA current.

pub const CURRENT_1000MA: ChargingCurrent[src]

1000 mA current.

pub const CURRENT_1080MA: ChargingCurrent[src]

1080 mA current.

pub const CURRENT_1160MA: ChargingCurrent[src]

1160 mA current.

pub const CURRENT_1240MA: ChargingCurrent[src]

1240 mA current.

pub const CURRENT_1320MA: ChargingCurrent[src]

1320 mA current.

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

Returns an empty set of flags

pub const fn all() -> ChargingCurrent[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<ChargingCurrent>[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) -> ChargingCurrent[src]

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

pub const unsafe fn from_bits_unchecked(bits: u8) -> ChargingCurrent[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: ChargingCurrent) -> bool[src]

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

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

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

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

Inserts the specified flags in-place.

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

Removes the specified flags in-place.

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

Toggles the specified flags in-place.

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

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

Trait Implementations

impl Binary for ChargingCurrent[src]

impl BitAnd<ChargingCurrent> for ChargingCurrent[src]

type Output = ChargingCurrent

The resulting type after applying the & operator.

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

Returns the intersection between the two sets of flags.

impl BitAndAssign<ChargingCurrent> for ChargingCurrent[src]

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

Disables all flags disabled in the set.

impl BitOr<ChargingCurrent> for ChargingCurrent[src]

type Output = ChargingCurrent

The resulting type after applying the | operator.

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

Returns the union of the two sets of flags.

impl BitOrAssign<ChargingCurrent> for ChargingCurrent[src]

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

Adds the set of flags.

impl BitXor<ChargingCurrent> for ChargingCurrent[src]

type Output = ChargingCurrent

The resulting type after applying the ^ operator.

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

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

impl BitXorAssign<ChargingCurrent> for ChargingCurrent[src]

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

Toggles the set of flags.

impl Clone for ChargingCurrent[src]

impl Copy for ChargingCurrent[src]

impl Debug for ChargingCurrent[src]

impl Eq for ChargingCurrent[src]

impl Extend<ChargingCurrent> for ChargingCurrent[src]

impl FromIterator<ChargingCurrent> for ChargingCurrent[src]

impl Hash for ChargingCurrent[src]

impl LowerHex for ChargingCurrent[src]

impl Not for ChargingCurrent[src]

type Output = ChargingCurrent

The resulting type after applying the ! operator.

pub fn not(self) -> ChargingCurrent[src]

Returns the complement of this set of flags.

impl Octal for ChargingCurrent[src]

impl Ord for ChargingCurrent[src]

impl PartialEq<ChargingCurrent> for ChargingCurrent[src]

impl PartialOrd<ChargingCurrent> for ChargingCurrent[src]

impl StructuralEq for ChargingCurrent[src]

impl StructuralPartialEq for ChargingCurrent[src]

impl Sub<ChargingCurrent> for ChargingCurrent[src]

type Output = ChargingCurrent

The resulting type after applying the - operator.

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

Returns the set difference of the two sets of flags.

impl SubAssign<ChargingCurrent> for ChargingCurrent[src]

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

Disables all flags enabled in the set.

impl UpperHex for ChargingCurrent[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, 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.