mingling 0.1.0

A procedural command-line framework with subcommand support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::AnyOutput;

#[derive(thiserror::Error, Debug)]
pub enum ChainProcessError {
    #[error("Other error: {0}")]
    Other(String),

    #[error("IO error: {0}")]
    IO(#[from] std::io::Error),

    #[error("Broken chain")]
    Broken(AnyOutput),
}