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