Struct rp2040_pac2::clocks::regs::Fc0Status[][src]

#[repr(transparent)]pub struct Fc0Status(pub u32);

Frequency counter status

Implementations

impl Fc0Status[src]

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

Test clock stopped during test

pub fn set_died(&mut self, val: bool)[src]

Test clock stopped during test

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

Test clock faster than expected, only valid when status_done=1

pub fn set_fast(&mut self, val: bool)[src]

Test clock faster than expected, only valid when status_done=1

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

Test clock slower than expected, only valid when status_done=1

pub fn set_slow(&mut self, val: bool)[src]

Test clock slower than expected, only valid when status_done=1

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

Test failed

pub fn set_fail(&mut self, val: bool)[src]

Test failed

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

Waiting for test clock to start

pub fn set_waiting(&mut self, val: bool)[src]

Waiting for test clock to start

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

Test running

pub fn set_running(&mut self, val: bool)[src]

Test running

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

Test complete

pub fn set_done(&mut self, val: bool)[src]

Test complete

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

Test passed

pub fn set_pass(&mut self, val: bool)[src]

Test passed

Trait Implementations

impl Clone for Fc0Status[src]

impl Copy for Fc0Status[src]

impl Default for Fc0Status[src]

Auto Trait Implementations

impl Send for Fc0Status

impl Sync for Fc0Status

impl Unpin for Fc0Status

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, 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.