valid_toml 0.0.2

Provides the ability to load a TOML file with validation.
Documentation
/* Copyright 2016 Joshua Gentry
 *
 * Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
 * http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
 * <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
 * option. This file may not be copied, modified, or distributed
 * except according to those terms.
 */

mod duration_decoder;
mod item_duration;
mod item_str;
mod item_u16;
mod item_usize;

pub use data::item_duration::ItemDuration;
pub use data::item_str::ItemStr;
pub use data::item_u16::ItemU16;
pub use data::item_usize::ItemUsize;

use notify::Notify;

pub trait Container
{
    fn add_notify(&mut self, String, Box<Notify>);
}