zhtw 4.4.0

Traditional Chinese converter for Taiwan — Rust SDK
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum Error {
    #[error("invalid source string: {0}")]
    InvalidSource(String),
    #[error("sources must be a non-empty list of Source variants")]
    EmptySources,
}

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