pub enum HandsFreeRequest {
WatchPeerConnected {
responder: HandsFreeWatchPeerConnectedResponder,
},
}
Variants§
WatchPeerConnected
Hanging get that waits for a a peer that supports the HFP Audio Gateway role to connect.
id
is the unique identifier associated with the peer.
handle
is the channel that the client should use to manage the peer.
If the call manager does not intend to handle a given peer. it must
close the handle,
Fields
§
responder: HandsFreeWatchPeerConnectedResponder
Implementations§
Source§impl HandsFreeRequest
impl HandsFreeRequest
pub fn into_watch_peer_connected( self, ) -> Option<HandsFreeWatchPeerConnectedResponder>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HandsFreeRequest
impl !RefUnwindSafe for HandsFreeRequest
impl Send for HandsFreeRequest
impl Sync for HandsFreeRequest
impl Unpin for HandsFreeRequest
impl !UnwindSafe for HandsFreeRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more