pub struct TextToSpeechRequest {
pub text: String,
pub voice: String,
pub format: Option<String>,
pub speed: Option<f32>,
pub metadata: Metadata,
}
Expand description
Request for text-to-speech conversion.
Fields§
§text: String
Text to convert to speech
voice: String
Voice to use
format: Option<String>
Audio format for output
speed: Option<f32>
Speed of speech (0.25 to 4.0)
metadata: Metadata
Additional metadata
Trait Implementations§
Source§impl Clone for TextToSpeechRequest
impl Clone for TextToSpeechRequest
Source§fn clone(&self) -> TextToSpeechRequest
fn clone(&self) -> TextToSpeechRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TextToSpeechRequest
impl Debug for TextToSpeechRequest
Source§impl<'de> Deserialize<'de> for TextToSpeechRequest
impl<'de> Deserialize<'de> for TextToSpeechRequest
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TextToSpeechRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TextToSpeechRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for TextToSpeechRequest
impl Serialize for TextToSpeechRequest
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for TextToSpeechRequest
impl RefUnwindSafe for TextToSpeechRequest
impl Send for TextToSpeechRequest
impl Sync for TextToSpeechRequest
impl Unpin for TextToSpeechRequest
impl UnwindSafe for TextToSpeechRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more