summaryrefslogtreecommitdiff
path: root/src/values.rs
blob: 0ac17cbf2d65f300347eca9abe0f92c70a501f4c (plain)
1
2
3
4
5
6
7
mod padding;

pub trait ValueFromStr: Sized {
    type Err;

    fn value_from_str(s: &str) -> Result<Self, Self::Err>;
}