[][src]Enum ambiq_apollo3_pac::mspi::flash::XIPACKR

pub enum XIPACKR {
    NOACK,
    ACK,
    TERMINATE,
    _Reserved(u8),
}

Possible values of the field XIPACK

Variants

NOACK

No acknowledege sent. Data IOs are tristated the first turnaround cycle value.

ACK

Positive acknowledege sent. Data IOs are driven to 0 the first turnaround cycle to acknowledge XIP mode value.

TERMINATE

Negative acknowledege sent. Data IOs are driven to 1 the first turnaround cycle to terminate XIP mode. XIPSENDI should be reenabled for the next transfer value.

_Reserved(u8)

Reserved

Methods

impl XIPACKR[src]

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

Value of the field as raw bits

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

Checks if the value of the field is NOACK

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

Checks if the value of the field is ACK

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

Checks if the value of the field is TERMINATE

Trait Implementations

impl Copy for XIPACKR[src]

impl Debug for XIPACKR[src]

impl PartialEq<XIPACKR> for XIPACKR[src]

impl Clone for XIPACKR[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 XIPACKR

impl Sync for XIPACKR

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