OperationSteps

Trait OperationSteps 

Source
pub trait OperationSteps<T> {
    // Required method
    fn step(&mut self) -> UsbStep<'_, T>;
}
Expand description

steps to take to finish an operation

Required Methods§

Source

fn step(&mut self) -> UsbStep<'_, T>

Next step to execute by a transport

Implementors§

Source§

impl OperationSteps<()> for MaskRomOperation<'_>

Source§

impl<T> OperationSteps<T> for UsbOperation<'_, T>
where T: FromOperation + Debug,