pub struct AudioLink {
pub endpoint: u8,
pub linked_endpoint: u8,
pub linked_device: DeviceUid,
}Expand description
A link from an audio endpoint on this device to one on another.
Fields§
§endpoint: u8The local endpoint.
linked_endpoint: u8The endpoint it is linked to.
linked_device: DeviceUidThe device holding the linked endpoint.
Trait Implementations§
impl Copy for AudioLink
impl Eq for AudioLink
impl StructuralPartialEq for AudioLink
Auto Trait Implementations§
impl Freeze for AudioLink
impl RefUnwindSafe for AudioLink
impl Send for AudioLink
impl Sync for AudioLink
impl Unpin for AudioLink
impl UnsafeUnpin for AudioLink
impl UnwindSafe for AudioLink
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