alsactl 0.8.0

API binding for alsactl library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: MIT

mod card;

/// For convenience to provide traits and their blanket implementations to write subclass.
pub mod prelude {
    pub use super::card::*;
}

use {
    super::*,
    glib::{subclass::prelude::*, translate::*, Class},
};