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