SML
is a simple markup language. It is designed to convert human readable information into
Rust data-structures.
Note: The API is very far from stable. In fact everything is very far from stable. I'm working on the serialization side of things now (1st April 2019). Any version that is 0.1.x can be considered pretty much unusable.
The format looks this,
text
hobbit:
name: "Frodo Baggins"
age: "98"
friends:
hobbit:
name: "Bilbo Baggins"
age: "176"
hobbit:
name: "Samwise Gamgee"
age: "66"
hobbit: "Frodo"
by itself is invalid. It can be written:
hobbit:
name: "Frodo"
:
.\"
.text
ToSmall
trait to_string()
---> --->
------------- ----------- ----------
| | | | | |
| data- | | Small | | String |
| structure | | | | |
| | | | | |
------------- ----------- ----------
<--- <---
FromSmall from_str()
trait
To convert from Small
to a data-structure,
```rust use small::{Small, FromSmall, SmallError};
struct Hobbit {
name: String,
age: u32,
friends: Vec
impl Small for Hobbit {
fn from_small(small: Small) -> Result
fn main() { let s = r#" hobbit: name: "Frodo Baggins" age: "98" friends: hobbit: name: "Bilbo Baggins" age: "176" hobbit: name: "Samwise Gamgee" age: "66""#;
let frodo = Hobbit::from_str_debug(s);
}
```
and to convert from a data-structure to Small
,
```rust use sml::{Small, ToSmall, SmallError};
struct Hobbit {
name: String,
age: u32,
friends: Vec
impl ToSmall for Hobbit { fn to_small(&self) -> Small { Small::key("hobbit") .append(self.name) .append(self.age) .append(self.friends) .append(self.bicycle); } }
println!("{}", frodo::
// hobbit: // name: "Frodo Baggins" // age: "98" // friends: // hobbit: // name: "Bilbo Baggins" // age: "176" // hobbit: // name: "Samwise Gamgee" // age: "66" ```