aliyun-error 0.0.0

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

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