Struct ecpdap::Status[][src]

pub struct Status(_);

ECP5 Status register.

Implementations

impl Status[src]

pub fn new(word: u32) -> Self[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pub fn config_target(&self) -> ConfigTarget[src]

pub fn bse_error(&self) -> BSEError[src]

Trait Implementations

impl Clone for Status[src]

impl Copy for Status[src]

impl Debug for Status[src]

Auto Trait Implementations

impl RefUnwindSafe for Status

impl Send for Status

impl Sync for Status

impl Unpin for Status

impl UnwindSafe for Status

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.