wiremix 0.11.0

A TUI mixer for PipeWire
1
2
3
4
5
6
7
//! Type representing whether a device is sink or source.

#[derive(Debug, Clone, Copy)]
pub enum DeviceKind {
    Sink,
    Source,
}