aliyun_error/
convert.rs

1use super::*;
2
3impl From<AliErrorKind> for AliError {
4    fn from(value: AliErrorKind) -> Self {
5        Self {
6            kind: Box::new(value),
7        }
8    }
9}