pub enum StreamConfigConnectorRequest {
Connect {
protocol: ServerEnd<StreamConfigMarker>,
control_handle: StreamConfigConnectorControlHandle,
},
}
Expand description
For an overview see Audio Driver Streaming Interface.
§Deprecation
Not supported anymore, instead use an Audio Composite with one Ring Buffer, see Audio Drivers Architecture
Variants§
Connect
Connect to a StreamConfig
protocol.
This method allows a component to serve FIDL outside the devhost’s control.
Implementations§
Source§impl StreamConfigConnectorRequest
impl StreamConfigConnectorRequest
pub fn into_connect( self, ) -> Option<(ServerEnd<StreamConfigMarker>, StreamConfigConnectorControlHandle)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StreamConfigConnectorRequest
impl !RefUnwindSafe for StreamConfigConnectorRequest
impl Send for StreamConfigConnectorRequest
impl Sync for StreamConfigConnectorRequest
impl Unpin for StreamConfigConnectorRequest
impl !UnwindSafe for StreamConfigConnectorRequest
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