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.
 */
use item_value::ItemValue;

//*************************************************************************************************
/// Internal trait used to send out a value if any objects are waiting for a value.
pub trait Notify
{
    //---------------------------------------------------------------------------------------------
    /// Called whn an item value is read from a TOML file or a TOML file is read and the value
    /// was optional with a default value.
    fn send(
        &self,
        value : &ItemValue
        );
}