[][src]Struct sdio_host::OCR

pub struct OCR(_);

Operation Conditions Register (OCR)

R3

Implementations

impl OCR[src]

pub fn voltage_window_mv(&self) -> Option<(u16, u16)>[src]

VDD voltage window

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

Switching to 1.8V Accepted (S18A). Only UHS-I cards support this bit

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

Over 2TB support Status. Only SDUC card support this bit

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

Indicates whether the card supports UHS-II Interface

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

Card Capacity Status (CCS). True for SDHC/SDXC/SDUC, false for SDSC

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

Card power up status bit (busy)

Trait Implementations

impl Clone for OCR[src]

impl Copy for OCR[src]

impl Debug for OCR[src]

impl Default for OCR[src]

impl From<u32> for OCR[src]

Auto Trait Implementations

impl Send for OCR

impl Sync for OCR

impl Unpin for OCR

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.