pub enum DaiConnectorRequest {
Connect {
dai_protocol: ServerEnd<DaiMarker>,
control_handle: DaiConnectorControlHandle,
},
}
Expand description
For an overview of the DAI protocols see Digital Audio Interface
§Deprecation
Not supported anymore, instead use an Audio Composite with one DAI and one Ring Buffer, see Audio Drivers Architecture
Variants§
Connect
This connects to a DAI protocol server.
Implementations§
Source§impl DaiConnectorRequest
impl DaiConnectorRequest
pub fn into_connect( self, ) -> Option<(ServerEnd<DaiMarker>, DaiConnectorControlHandle)>
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 DaiConnectorRequest
impl !RefUnwindSafe for DaiConnectorRequest
impl Send for DaiConnectorRequest
impl Sync for DaiConnectorRequest
impl Unpin for DaiConnectorRequest
impl !UnwindSafe for DaiConnectorRequest
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