chord-util 0.1.21

async parallel case executor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod container;
pub mod engine;
pub mod image;

#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("invalid url {0}")]
    Url(String),
    #[error("error with status {0}")]
    Status(u16),
    #[error("{0}")]
    Io(String),
    #[error("container error: {0}")]
    Container(String),
}