pub struct DacInfo {
pub id: String,
pub name: String,
pub kind: DacType,
pub caps: DacCapabilities,
}Expand description
Information about a discovered DAC before connection.
Fields§
§id: StringStable, unique identifier used for (re)selecting DACs.
name: StringHuman-readable name for the DAC.
kind: DacTypeThe type of DAC hardware.
caps: DacCapabilitiesDAC capabilities.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DacInfo
impl RefUnwindSafe for DacInfo
impl Send for DacInfo
impl Sync for DacInfo
impl Unpin for DacInfo
impl UnwindSafe for DacInfo
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