Skip to main content

TuningOp

Trait TuningOp 

Source
pub trait TuningOp {
    // Required method
    fn exec<B: MmcBus>(
        &mut self,
        bus: &mut B,
    ) -> impl Future<Output = Result<bool, MmcError>>;
}
Expand description

Bus Tuning Operation

Required Methods§

Source

fn exec<B: MmcBus>( &mut self, bus: &mut B, ) -> impl Future<Output = Result<bool, MmcError>>

Execute the operation. If error, abort the operation and return.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<'a> TuningOp for Cmd19<'a>