rust实现的腾讯云IM接口SDK
```rust use tcloud-im-api as api
async fn dorequest() { let sdkappid = 000000000; let manageridentifier = "youridentifier"; let key = "yourkey";
let client = Clientx::new(sdkappid, manager_identifier, key);
let resp = client.account().import(account::Account{
face_url: "https://xxx.xxx".to_owned(),
nick: "a name".to_owned(),
identifier: "identifier".to_owned()
}).await?;
}
```