[]Struct ht16k33::DisplayDataAddress

pub struct DisplayDataAddress { /* fields omitted */ }

Display RAM data address.

Methods

impl DisplayDataAddress

pub const ROW_0: DisplayDataAddress

Row 0

pub const ROW_1: DisplayDataAddress

Row 1

pub const ROW_2: DisplayDataAddress

Row 2

pub const ROW_3: DisplayDataAddress

Row 3

pub const ROW_4: DisplayDataAddress

Row 4

pub const ROW_5: DisplayDataAddress

Row 5

pub const ROW_6: DisplayDataAddress

Row 6

pub const ROW_7: DisplayDataAddress

Row 7

pub const ROW_8: DisplayDataAddress

Row 8

pub const ROW_9: DisplayDataAddress

Row 9

pub const ROW_10: DisplayDataAddress

Row 10

pub const ROW_11: DisplayDataAddress

Row 11

pub const ROW_12: DisplayDataAddress

Row 12

pub const ROW_13: DisplayDataAddress

Row 13

pub const ROW_14: DisplayDataAddress

Row 14

pub const ROW_15: DisplayDataAddress

Row 15

pub const fn empty() -> DisplayDataAddress

Returns an empty set of flags

pub const fn all() -> DisplayDataAddress

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<DisplayDataAddress>

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) -> DisplayDataAddress

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

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: DisplayDataAddress) -> bool

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

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

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

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

Inserts the specified flags in-place.

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

Removes the specified flags in-place.

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

Toggles the specified flags in-place.

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

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

Trait Implementations

impl Eq for DisplayDataAddress

impl Extend<DisplayDataAddress> for DisplayDataAddress

impl Ord for DisplayDataAddress

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl PartialEq<DisplayDataAddress> for DisplayDataAddress

impl Copy for DisplayDataAddress

impl Clone for DisplayDataAddress

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialOrd<DisplayDataAddress> for DisplayDataAddress

impl Default for DisplayDataAddress[src]

impl Debug for DisplayDataAddress

impl Display for DisplayDataAddress[src]

impl Sub<DisplayDataAddress> for DisplayDataAddress

type Output = DisplayDataAddress

The resulting type after applying the - operator.

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

Returns the set difference of the two sets of flags.

impl SubAssign<DisplayDataAddress> for DisplayDataAddress

fn sub_assign(&mut self, other: DisplayDataAddress)

Disables all flags enabled in the set.

impl Not for DisplayDataAddress

type Output = DisplayDataAddress

The resulting type after applying the ! operator.

fn not(self) -> DisplayDataAddress

Returns the complement of this set of flags.

impl BitAnd<DisplayDataAddress> for DisplayDataAddress

type Output = DisplayDataAddress

The resulting type after applying the & operator.

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

Returns the intersection between the two sets of flags.

impl BitOr<DisplayDataAddress> for DisplayDataAddress

type Output = DisplayDataAddress

The resulting type after applying the | operator.

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

Returns the union of the two sets of flags.

impl BitXor<DisplayDataAddress> for DisplayDataAddress

type Output = DisplayDataAddress

The resulting type after applying the ^ operator.

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

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

impl BitAndAssign<DisplayDataAddress> for DisplayDataAddress

fn bitand_assign(&mut self, other: DisplayDataAddress)

Disables all flags disabled in the set.

impl BitOrAssign<DisplayDataAddress> for DisplayDataAddress

fn bitor_assign(&mut self, other: DisplayDataAddress)

Adds the set of flags.

impl BitXorAssign<DisplayDataAddress> for DisplayDataAddress

fn bitxor_assign(&mut self, other: DisplayDataAddress)

Toggles the set of flags.

impl Hash for DisplayDataAddress

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl FromIterator<DisplayDataAddress> for DisplayDataAddress

impl Octal for DisplayDataAddress

impl Binary for DisplayDataAddress

impl LowerHex for DisplayDataAddress

impl UpperHex for DisplayDataAddress

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From<T> for 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.

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

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

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