uwuify 0.2.2

fastest text uwuifier in the west
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use thiserror::Error;
use std::num::ParseIntError;

#[derive(Error, Debug)]
pub(crate) enum Error {
    #[error("the thread count must be a integer")]
    ThreadCountParse(#[from] ParseIntError),

    #[error("failed to open file")]
    FileOpen(std::io::Error),

    #[error("failed to create file")]
    FileCreate(std::io::Error),
}

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