summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorRyan Leckey <leckey.ryan@gmail.com>2017-02-02 12:03:55 -0800
committerRyan Leckey <leckey.ryan@gmail.com>2017-02-02 12:03:55 -0800
commit115fe07e2c11aa72e91a5ce9b028ed1c1ff7d806 (patch)
tree48ccdb6417c3c7c9593a9c447157e3eba724f1a8 /src/lib.rs
parentd913d951f1ff040a543f9ac859a0f300ce4d8434 (diff)
Add support for Table/Array and deep merging of configuration values
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 8af61c3..5f8957a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -65,11 +65,11 @@ pub use value::Value;
pub use config::Config;
// Global configuration
-static mut CONFIG: Option<RwLock<Config<'static>>> = None;
+static mut CONFIG: Option<RwLock<Config>> = None;
static CONFIG_INIT: Once = ONCE_INIT;
// Get the global configuration instance
-pub fn global() -> &'static mut RwLock<Config<'static>> {
+pub fn global() -> &'static mut RwLock<Config> {
unsafe {
CONFIG_INIT.call_once(|| {
CONFIG = Some(Default::default());
@@ -86,18 +86,18 @@ pub fn merge<T>(source: T) -> Result<(), Box<Error>>
}
pub fn set_default<T>(key: &str, value: T) -> Result<(), Box<Error>>
- where T: Into<Value<'static>>
+ where T: Into<Value>
{
global().write().unwrap().set_default(key, value)
}
pub fn set<T>(key: &str, value: T) -> Result<(), Box<Error>>
- where T: Into<Value<'static>>
+ where T: Into<Value>
{
global().write().unwrap().set(key, value)
}
-pub fn get<'a>(key: &str) -> Option<Cow<'a, Value>> {
+pub fn get<'a>(key: &str) -> Option<&'a Value> {
// TODO(~): Should this panic! or return None with an error message?
// Make an issue if you think it should be an error message.
let r = global().read().unwrap();