我正在使用来自 rusoto 的PollyClient ,我正在尝试处理我认为Future
来自方法的某种类型的响应synthesize_speech()
。
这是我所拥有的按原样编译和运行的片段:
extern crate rusoto_core;
extern crate rusoto_polly;
use std::default::Default;
use tokio::{io};
use rusoto_core::credential::{ProfileProvider, ProvideAwsCredentials};
use rusoto_core::Region;
use rusoto_core::ByteStream;
use rusoto_polly::{PollyClient, SynthesizeSpeechInput, Polly};
use std::fs::File;
use futures::AsyncBufRead;
use std::pin::Pin;
use futures::Future;
fn main() {
let region = Region::UsEast1;
let polly_client = PollyClient::new(region); // using default credenetials
let speech_input = SynthesizeSpeechInput{
engine: Option::from(String::from("neural")),
language_code: None,
lexicon_names: None,
output_format: "mp3".to_string(),
sample_rate: None,
speech_mark_types: None,
text: String::from("hello world!"),
text_type: None,
voice_id: String::from("Amy")
};
let mut response = polly_client.synthesize_speech(speech_input);
println!("Now how to we handle this respones object...");
}
我的目标是在响应中保存应该是 MP3 二进制数据的内容。我没有分享任何编译器错误,因为我经历了很多不同的错误。我是 Rust 的新手,在开发非异步代码的同时,这是我第一次遇到它。
我是否需要将该synthesize_speech()
方法包装在闭包中,以便可以将其包装在某种await
块中?
任何帮助或建议将不胜感激。