fidl_fuchsia_hardware_bluetooth

Trait ScoConnectionProxyInterface

Source
pub trait ScoConnectionProxyInterface: Send + Sync {
    type Send_ResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required methods
    fn send_(&self, packet: &[u8]) -> Self::Send_ResponseFut;
    fn ack_receive(&self) -> Result<(), Error>;
    fn stop(&self) -> Result<(), Error>;
}

Required Associated Types§

Source

type Send_ResponseFut: Future<Output = Result<(), Error>> + Send

Required Methods§

Source

fn send_(&self, packet: &[u8]) -> Self::Send_ResponseFut

Source

fn ack_receive(&self) -> Result<(), Error>

Source

fn stop(&self) -> Result<(), Error>

Implementors§