hydra 0.1.40

A framework for writing fault tolerant, highly scalable applications with the Rust programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
use bitflags::bitflags;

bitflags! {
    /// A collection of configurable flags for a process.
    #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
    pub struct ProcessFlags : u32 {
        /// Whether or not the process is trapping exits.
        const TRAP_EXIT = 1 << 0;
    }
}