alsatimer 0.8.0

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

mod user_instance;

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

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