croc-sidecar 0.2.2

A wrapper for the Croc binary
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
    #[error("Tried to take stderr but it was not available")]
    NoStderr,
    #[error("IO error: {0}")]
    IoError(#[from] tokio::io::Error),
}

pub type Result<T = ()> = std::result::Result<T, Error>;