pub trait HfpTestProxyInterface: Send + Sync {
    // Required methods
    fn battery_indicator(&self, level: u8) -> Result<(), Error>;
    fn set_connection_behavior(
        &self,
        behavior: &ConnectionBehavior
    ) -> Result<(), Error>;
}

Required Methods§

source

fn battery_indicator(&self, level: u8) -> Result<(), Error>

source

fn set_connection_behavior( &self, behavior: &ConnectionBehavior ) -> Result<(), Error>

Implementors§