[][src]Struct feather_f405::SdHost

pub struct SdHost {
    pub cd: PB12<Input<PullUp>>,
    pub sdio: Sdio,
}

The sd host on the feather board

Fields

cd: PB12<Input<PullUp>>

Card detect pin

sdio: Sdio

Sdio device

Implementations

impl SdHost[src]

pub fn new<M0, M1, M2, M3, M4, M5, M6>(
    dev: SDIO,
    clk: PC12<M0>,
    cmd: PD2<M1>,
    d0: PC8<M2>,
    d1: PC9<M3>,
    d2: PC10<M4>,
    d3: PC11<M5>,
    card_detect: PB12<M6>
) -> Self
[src]

Auto Trait Implementations

impl Send for SdHost

impl !Sync for SdHost

impl Unpin for SdHost

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

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.