devela/sys/os/linux/structs/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// devela::sys::os::linux::structs
//
//! Linux related structs.
//

mod sigaction;
mod termios;
mod timespec;

#[allow(unused)]
pub use {
    sigaction::{LinuxSigaction, LinuxSigset},
    termios::{LinuxTerminalSize, LinuxTermios},
    timespec::LinuxTimespec,
};