asexp 0.1.2

Advanced S-expression-like format suitable for configuration and serialization
1
2
3
4
5
6
7
8
9
use super::Sexp;

/// Convert self into a S-expression.
pub trait ToSexp {
    fn to_sexp(&self) -> Sexp;
}

impl ToSexp for u32 {
}