pub trait GetCnameTokenOps {
// Required method
fn get_cname_token(
&self,
domain: impl Into<String>,
) -> impl Future<Output = Result<CnameToken>>;
}Required Methods§
Sourcefn get_cname_token(
&self,
domain: impl Into<String>,
) -> impl Future<Output = Result<CnameToken>>
fn get_cname_token( &self, domain: impl Into<String>, ) -> impl Future<Output = Result<CnameToken>>
Retrieve the CNAME token for a custom domain.
Official document: https://www.alibabacloud.com/help/en/oss/developer-reference/getcnametoken
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.