[][src]Enum efm32gg11b820::ebi::ctrl::MODE3R

pub enum MODE3R {
    D8A8,
    D16A16ALE,
    D8A24ALE,
    D16,
}

Possible values of the field MODE3

Variants

D8A8

EBI_AD drives 8 bit data, 8 bit address, ALE not used. Extended address bits can be enabled.

D16A16ALE

EBI_AD drives 16 bit data, 16 bit address, ALE is used for address latching. Extended address bits can be enabled.

D8A24ALE

EBI_AD drives 8 bit data, 24 bit address, ALE is used for address latching. Extended address bits can be enabled.

D16

EBI_AD drives 16 bit data, ALE not used. Extended address bits can be enabled.

Methods

impl MODE3R[src]

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

Value of the field as raw bits

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

Checks if the value of the field is D8A8

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

Checks if the value of the field is D16A16ALE

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

Checks if the value of the field is D8A24ALE

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

Checks if the value of the field is D16

Trait Implementations

impl Copy for MODE3R[src]

impl Debug for MODE3R[src]

impl PartialEq<MODE3R> for MODE3R[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for MODE3R[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for MODE3R

impl Sync for MODE3R

Blanket Implementations

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> From for T[src]

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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

impl<T> Same for T

type Output = T

Should always be Self