gtmpl_value   ![Build Status] ![Latest Version]

The internal value type for gmtpl-rust


toml [dependencies] gtmpl_value = "0.2.0"

Current State

gtmpl_value is a basic implementation for internal values within gtmpl-rust. It is used as to represent values parsed from the template and from the context.

Usage

The From trait is implemented for:

gtmpl_derive provides a custom derive for structs.

```rust extern crate gtmplvalue; use gtmplvalue::Value;

fn main() { let v: Value = "something".into(); println!("{}", v); } ```