Struct toml_loader::Loader [] [src]

pub struct Loader;

Imlements helper functions for loading and parsing .toml files

Methods

impl Loader
[src]

Create Toml::Value from file specified by path

Example

use toml_loader::Loader;
use std::path::Path;

let toml = Loader::from_file(Path::new("some.toml")).unwrap();