lambdust 0.1.1

A Scheme dialect with gradual typing and effect systems
1
2
3
4
5
6
7
8
9
10
//! Default environment manager implementation

use super::environment_manager_configuration::EnvironmentManagerConfiguration;

/// Default environment manager implementation
#[derive(Debug)]
pub struct DefaultEnvironmentManager {
    /// Configuration
    pub config: EnvironmentManagerConfiguration,
}