jay-config 1.7.0

Configuration crate for the Jay compositor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::{
    error::Error,
    fmt::{Display, Formatter},
};

#[derive(Debug)]
pub struct StringError(pub String);

impl Display for StringError {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.write_str(&self.0)
    }
}

impl Error for StringError {}