pub enum PcmSource {
Mic,
Loopback,
}Expand description
Which physical source a PCM frame came from. Mic and loopback frames arrive interleaved on the same channel; consumers split on this tag — e.g. mic → “local speaker” STT, loopback → “remote party” STT.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PcmSource
impl RefUnwindSafe for PcmSource
impl Send for PcmSource
impl Sync for PcmSource
impl Unpin for PcmSource
impl UnsafeUnpin for PcmSource
impl UnwindSafe for PcmSource
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