aliyun-error 0.0.1

阿里云统一错误处理
Documentation
1
2
3
4
5
6
7
8
9
10
use super::*;

#[cfg(feature = "reqwest")]
mod for_reqwest;

impl From<AliErrorKind> for AliError {
    fn from(value: AliErrorKind) -> Self {
        Self { kind: Box::new(value) }
    }
}