Trait tencentcloud::api::Api
source · pub trait Api {
type Request: Serialize + Debug;
type Response: for<'a> Deserialize<'a> + Debug;
const VERSION: &'static str;
const ACTION: &'static str;
const SERVICE: &'static str;
const HOST: &'static str;
}
Expand description
tencentcloud api
the Api
define an api request type, response type and other info
Required Associated Types§
sourcetype Response: for<'a> Deserialize<'a> + Debug
type Response: for<'a> Deserialize<'a> + Debug
the api response type