pub struct CodecConnectorServiceProxy(/* private fields */);
Expand description
§Deprecation
Not supported anymore, instead use an Audio Composite with one DAI and no Ring Buffer, see Audio Drivers Architecture
Implementations§
Source§impl CodecConnectorServiceProxy
impl CodecConnectorServiceProxy
pub fn connect_to_codec_connector(&self) -> Result<CodecConnectorProxy, Error>
Sourcepub fn connect_to_codec_connector_sync(
&self,
) -> Result<CodecConnectorSynchronousProxy, Error>
pub fn connect_to_codec_connector_sync( &self, ) -> Result<CodecConnectorSynchronousProxy, Error>
Like connect_to_codec_connector
, but returns a sync proxy.
See Self::connect_to_codec_connector
for more details.
Sourcepub fn connect_channel_to_codec_connector(
&self,
server_end: ServerEnd<CodecConnectorMarker>,
) -> Result<(), Error>
pub fn connect_channel_to_codec_connector( &self, server_end: ServerEnd<CodecConnectorMarker>, ) -> Result<(), Error>
Like connect_to_codec_connector
, but accepts a server end.
See Self::connect_to_codec_connector
for more details.
Trait Implementations§
Source§impl ServiceProxy for CodecConnectorServiceProxy
impl ServiceProxy for CodecConnectorServiceProxy
Source§type Service = CodecConnectorServiceMarker
type Service = CodecConnectorServiceMarker
The FIDL service this proxy represents.
Auto Trait Implementations§
impl Freeze for CodecConnectorServiceProxy
impl !RefUnwindSafe for CodecConnectorServiceProxy
impl !Send for CodecConnectorServiceProxy
impl !Sync for CodecConnectorServiceProxy
impl Unpin for CodecConnectorServiceProxy
impl !UnwindSafe for CodecConnectorServiceProxy
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