pub struct HfpTestProxy { /* private fields */ }
Implementations§
source§impl HfpTestProxy
impl HfpTestProxy
sourcepub fn take_event_stream(&self) -> HfpTestEventStream
pub fn take_event_stream(&self) -> HfpTestEventStream
Get a Stream of events from the remote end of the HfpTest protocol
Panics
Panics if the event stream was already taken.
sourcepub fn battery_indicator(&self, level: u8) -> Result<(), Error>
pub fn battery_indicator(&self, level: u8) -> Result<(), Error>
Set the value of the AG battery indicator.
level
must be within the range 0-5 inclusive. Values outside of this
range cause the channel to close.
sourcepub fn set_connection_behavior(
&self,
behavior: ConnectionBehavior
) -> Result<(), Error>
pub fn set_connection_behavior( &self, behavior: ConnectionBehavior ) -> Result<(), Error>
Configure the connection behavior when the component discovers new peers.
Trait Implementations§
source§impl Clone for HfpTestProxy
impl Clone for HfpTestProxy
source§fn clone(&self) -> HfpTestProxy
fn clone(&self) -> HfpTestProxy
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HfpTestProxy
impl Debug for HfpTestProxy
source§impl HfpTestProxyInterface for HfpTestProxy
impl HfpTestProxyInterface for HfpTestProxy
fn battery_indicator(&self, level: u8) -> Result<(), Error>
fn set_connection_behavior( &self, behavior: ConnectionBehavior ) -> Result<(), Error>
source§impl Proxy for HfpTestProxy
impl Proxy for HfpTestProxy
§type Protocol = HfpTestMarker
type Protocol = HfpTestMarker
The protocol which this
Proxy
controls.source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
Create a proxy over the given channel.
source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
Attempt to convert the proxy back into a channel. Read more
source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
Get a reference to the proxy’s underlying channel. Read more