1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
/// # Value extension
///
/// Extension trait for the toml::Value type
///

use toml::Value;

use crate::read::TomlValueReadExt;
use crate::set::TomlValueSetExt;
use crate::delete::TomlValueDeleteExt;
use crate::insert::TomlValueInsertExt;
use crate::error::Result;

/// Conveniance trait over
///
///  * TomlValueReadExt
///  * TomlValueSetExt
///
/// for ease of use.
///
/// The very same goal can be achieved by importing each trait seperately.
pub trait TomlValueExt<'doc> :
    TomlValueReadExt<'doc> + TomlValueSetExt + TomlValueDeleteExt + TomlValueInsertExt
{

    //
    // READ functionality
    //

    /// See documentation of `TomlValueReadExt`
    #[inline]
    fn read_with_seperator(&'doc self, query: &str, sep: char) -> Result<Option<&'doc Value>> {
        TomlValueReadExt::read_with_seperator(self, query, sep)
    }

    /// See documentation of `TomlValueReadExt`
    #[inline]
    fn read_mut_with_seperator(&'doc mut self, query: &str, sep: char) -> Result<Option<&'doc mut Value>> {
        TomlValueReadExt::read_mut_with_seperator(self, query, sep)
    }

    /// See documentation of `TomlValueReadExt`
    #[inline]
    fn read(&'doc self, query: &str) -> Result<Option<&'doc Value>> {
        TomlValueReadExt::read_with_seperator(self, query, '.')
    }

    /// See documentation of `TomlValueReadExt`
    #[inline]
    fn read_mut(&'doc mut self, query: &str) -> Result<Option<&'doc mut Value>> {
        TomlValueReadExt::read_mut_with_seperator(self, query, '.')
    }

    //
    // SET functionality
    //

    /// See documentation of `TomlValueSetExt`
    #[inline]
    fn set_with_seperator(&mut self, query: &str, sep: char, value: Value) -> Result<Option<Value>> {
        TomlValueSetExt::set_with_seperator(self, query, sep, value)
    }

    /// See documentation of `TomlValueSetExt`
    #[inline]
    fn set(&mut self, query: &str, value: Value) -> Result<Option<Value>> {
        TomlValueSetExt::set_with_seperator(self, query, '.', value)
    }

    //
    // DELETE functionality
    //

    /// See documentation of `TomlValueDeleteExt`
    #[inline]
    fn delete_with_seperator(&mut self, query: &str, sep: char) -> Result<Option<Value>> {
        TomlValueDeleteExt::delete_with_seperator(self, query, sep)
    }

    /// See documentation of `TomlValueDeleteExt`
    #[inline]
    fn delete(&mut self, query: &str) -> Result<Option<Value>> {
        TomlValueDeleteExt::delete(self, query)
    }

    //
    // INSERT functionality
    //

    /// See documentation of `TomlValueInsertExt`
    #[inline]
    fn insert_with_seperator(&mut self, query: &str, sep: char, value: Value) -> Result<Option<Value>> {
        TomlValueInsertExt::insert_with_seperator(self, query, sep, value)
    }

    /// See documentation of `TomlValueInsertExt`
    #[inline]
    fn insert(&mut self, query: &str, value: Value) -> Result<Option<Value>> {
        TomlValueInsertExt::insert(self, query, value)
    }
}

impl<'doc> TomlValueExt<'doc> for Value { }