summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/config.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/config.rs b/src/config.rs
index fcdc2e1..d0be21f 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -16,26 +16,6 @@ pub struct Config {
sources: Vec<HashMap<String, Value>>,
}
-trait ConfigGetResult {
- type Type;
-}
-
-impl<'a> ConfigGetResult for &'a str {
- type Type = Cow<'a, str>;
-}
-
-impl ConfigGetResult for i64 {
- type Type = i64;
-}
-
-impl ConfigGetResult for f64 {
- type Type = f64;
-}
-
-impl ConfigGetResult for bool {
- type Type = bool;
-}
-
impl Config {
pub fn new() -> Config {
Default::default()