pub trait LedgerSyncTransport: Send + Sync {
    fn send_cmd(
        &self,
        command: APDUCommand
    ) -> Result<APDUAnswer, Box<EvalAltResult>>; }

Required Methods

Implementations on Foreign Types

Implementors