flexvg 0.1.0

Create SVG diagrams with flexbox
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Error, Debug)]
pub enum FlexError {
    #[error("Taffy error")]
    Taffy(#[from] taffy::Error),
    #[error("File IO error")]
    IO(#[from] std::io::Error),
    #[error("unknown error")]
    Unknown,
}