bastion 0.2.0

Fault-tolerant Runtime for Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//!
//! Platform configuration for Bastion runtime
//!
use log::LevelFilter;

///
/// Configuration for platform and runtime
#[derive(Clone, Copy)]
pub struct BastionConfig {
    /// Log verbosity of runtime defined by this
    pub log_level: LevelFilter,

    /// Configure the runtime as it is running under tests.
    pub in_test: bool,
}