[][src]Struct mci::command_arguments::sdio::cmd52::Cmd52

pub struct Cmd52 {
    pub val: u32,
}

Fields

val: u32

Implementations

impl Cmd52[src]

pub fn set_write_data(&mut self, val: u8) -> &mut Self[src]

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

pub fn set_register_address(&mut self, val: u32) -> &mut Self[src]

pub fn register_address(&self) -> u32[src]

pub fn set_read_after_write(&mut self, enabled: bool) -> &mut Self[src]

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

pub fn set_function_number(&mut self, function: u8) -> &mut Self[src]

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

pub fn set_direction(&mut self, direction: Direction) -> &mut Self[src]

pub fn direction(&self) -> Direction[src]

Auto Trait Implementations

impl Send for Cmd52

impl Sync for Cmd52

impl Unpin for Cmd52

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.