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