ali-dns 0.0.1

an aliyun dns skd
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[derive(Debug, thiserror::Error)]
pub enum Error {
	#[error("{0}")]
	Message(String),
	#[error(transparent)]
	IoError(#[from] std::io::Error),
	#[error(transparent)]
	AnyhowError(#[from] anyhow::Error),
	#[error(transparent)]
	VarError(#[from] std::env::VarError),
	#[error(transparent)]
	SerdeJsonError(#[from] serde_json::Error),
	#[error(transparent)]
	ReqwestError(#[from] reqwest::Error),
}