Skip to main content

Uac1

Struct Uac1 

Source
pub struct Uac1 { /* private fields */ }
Expand description

USB Audio Class 1 (UAC1) function.

UAC1 is widely supported by hosts including car stereos, older Macs, game consoles, and embedded systems that may not support UAC2.

Implementations§

Source§

impl Uac1

Source

pub fn builder() -> Uac1Builder

Creates a new USB Audio Class 1 (UAC1) builder with f_uac1 audio defaults.

Source

pub fn new(capture: Channel, playback: Channel) -> (Uac1, Handle)

Creates a new USB Audio Class 1 (UAC1) function with the specified capture and playback channels.

Source

pub fn status(&self) -> Status

Access to registration status.

Trait Implementations§

Source§

impl Debug for Uac1

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Uac1

§

impl RefUnwindSafe for Uac1

§

impl Send for Uac1

§

impl Sync for Uac1

§

impl Unpin for Uac1

§

impl UnsafeUnpin for Uac1

§

impl UnwindSafe for Uac1

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.