Struct imxrt_iomuxc::Daisy[][src]

pub struct Daisy { /* fields omitted */ }

A daisy selection

A daisy chain specifies which pad will be used for a peripheral’s input. Call write() to commit the settings described by a Daisy value.

Implementations

impl Daisy[src]

pub unsafe fn write(self)[src]

Commit the settings defined by this Daisy value to the hardware

Safety

This modifies a global, processor register, so the typical rules around mutable static memory apply.

Trait Implementations

impl Clone for Daisy[src]

impl Copy for Daisy[src]

impl Debug for Daisy[src]

impl Eq for Daisy[src]

impl PartialEq<Daisy> for Daisy[src]

impl StructuralEq for Daisy[src]

impl StructuralPartialEq for Daisy[src]

Auto Trait Implementations

impl !Send for Daisy

impl !Sync for Daisy

impl Unpin for Daisy

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> Same<T> for T[src]

type Output = T

Should always be Self

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.