aboutsummaryrefslogtreecommitdiff
path: root/src/utils.rs
blob: 23fff7e278c219bebf07fb109ca7f7997495e0d2 (plain)
1
2
3
4
5
6
7
pub trait FromStaticStr {
    type Err;
    fn from_str(s: &'static str) -> Result<Self, Self::Err>
        where Self: Sized;
}