reda-spice 0.1.0

Spice simulate and parse library
Documentation
1
2
3
4
5
6
7
8
9

#[derive(Debug, thiserror::Error)]
pub enum SpiceReadError {
    #[error("IO error '{0}'")]
    Io(#[from] std::io::Error),

    #[error("Parse error '{0}'")]
    Parse(String),
}