fidl_fuchsia_factory_lowpan

Trait FactoryDeviceProxyInterface

Source
pub trait FactoryDeviceProxyInterface: Send + Sync {
    type SendMfgCommandResponseFut: Future<Output = Result<String, Error>> + Send;
    type SetupOtCliResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required methods
    fn send_mfg_command(&self, command: &str) -> Self::SendMfgCommandResponseFut;
    fn setup_ot_cli(&self, server_socket: Socket) -> Self::SetupOtCliResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn send_mfg_command(&self, command: &str) -> Self::SendMfgCommandResponseFut

Source

fn setup_ot_cli(&self, server_socket: Socket) -> Self::SetupOtCliResponseFut

Implementors§