[]Struct axp173::ChargingCurrent

pub struct ChargingCurrent { /* fields omitted */ }

Possible values of charging current of AXP173 in milliAmperes

Methods

impl ChargingCurrent

pub const CURRENT_100MA: ChargingCurrent

100 mA current.

pub const CURRENT_190MA: ChargingCurrent

190 mA current.

pub const CURRENT_280MA: ChargingCurrent

280 mA current.

pub const CURRENT_360MA: ChargingCurrent

360 mA current.

pub const CURRENT_450MA: ChargingCurrent

450 mA current.

pub const CURRENT_550MA: ChargingCurrent

550 mA current.

pub const CURRENT_630MA: ChargingCurrent

630 mA current.

pub const CURRENT_700MA: ChargingCurrent

700 mA current.

pub const CURRENT_780MA: ChargingCurrent

780 mA current. Default.

pub const CURRENT_880MA: ChargingCurrent

880 mA current.

pub const CURRENT_960MA: ChargingCurrent

960 mA current.

pub const CURRENT_1000MA: ChargingCurrent

1000 mA current.

pub const CURRENT_1080MA: ChargingCurrent

1080 mA current.

pub const CURRENT_1160MA: ChargingCurrent

1160 mA current.

pub const CURRENT_1240MA: ChargingCurrent

1240 mA current.

pub const CURRENT_1320MA: ChargingCurrent

1320 mA current.

pub const fn empty() -> ChargingCurrent

Returns an empty set of flags

pub const fn all() -> ChargingCurrent

Returns the set containing all flags.

pub const fn bits(&self) -> u8

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u8) -> Option<ChargingCurrent>

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

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

pub const unsafe fn from_bits_unchecked(bits: u8) -> ChargingCurrent

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

pub const fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool

Returns true if all flags are currently set.

pub const fn intersects(&self, other: ChargingCurrent) -> bool

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

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

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

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

Inserts the specified flags in-place.

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

Removes the specified flags in-place.

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

Toggles the specified flags in-place.

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

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

Trait Implementations

impl Binary for ChargingCurrent

impl BitAnd<ChargingCurrent> for ChargingCurrent

type Output = ChargingCurrent

The resulting type after applying the & operator.

fn bitand(self, other: ChargingCurrent) -> ChargingCurrent

Returns the intersection between the two sets of flags.

impl BitAndAssign<ChargingCurrent> for ChargingCurrent

fn bitand_assign(&mut self, other: ChargingCurrent)

Disables all flags disabled in the set.

impl BitOr<ChargingCurrent> for ChargingCurrent

type Output = ChargingCurrent

The resulting type after applying the | operator.

fn bitor(self, other: ChargingCurrent) -> ChargingCurrent

Returns the union of the two sets of flags.

impl BitOrAssign<ChargingCurrent> for ChargingCurrent

fn bitor_assign(&mut self, other: ChargingCurrent)

Adds the set of flags.

impl BitXor<ChargingCurrent> for ChargingCurrent

type Output = ChargingCurrent

The resulting type after applying the ^ operator.

fn bitxor(self, other: ChargingCurrent) -> ChargingCurrent

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

impl BitXorAssign<ChargingCurrent> for ChargingCurrent

fn bitxor_assign(&mut self, other: ChargingCurrent)

Toggles the set of flags.

impl Clone for ChargingCurrent

impl Copy for ChargingCurrent

impl Debug for ChargingCurrent

impl Eq for ChargingCurrent

impl Extend<ChargingCurrent> for ChargingCurrent

impl FromIterator<ChargingCurrent> for ChargingCurrent

impl Hash for ChargingCurrent

impl LowerHex for ChargingCurrent

impl Not for ChargingCurrent

type Output = ChargingCurrent

The resulting type after applying the ! operator.

fn not(self) -> ChargingCurrent

Returns the complement of this set of flags.

impl Octal for ChargingCurrent

impl Ord for ChargingCurrent

impl PartialEq<ChargingCurrent> for ChargingCurrent

impl PartialOrd<ChargingCurrent> for ChargingCurrent

impl StructuralEq for ChargingCurrent

impl StructuralPartialEq for ChargingCurrent

impl Sub<ChargingCurrent> for ChargingCurrent

type Output = ChargingCurrent

The resulting type after applying the - operator.

fn sub(self, other: ChargingCurrent) -> ChargingCurrent

Returns the set difference of the two sets of flags.

impl SubAssign<ChargingCurrent> for ChargingCurrent

fn sub_assign(&mut self, other: ChargingCurrent)

Disables all flags enabled in the set.

impl UpperHex for ChargingCurrent

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> Same<T> for T

type Output = T

Should always be Self

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.