pub struct PreparedSpeechRequest {
pub body: JsonValue,
pub warnings: Vec<Warning>,
pub raw_pcm: bool,
}Expand description
A prepared speech request.
Fields§
§body: JsonValueRequest body.
warnings: Vec<Warning>Warnings.
raw_pcm: boolWhether raw PCM is returned instead of WAV.
Trait Implementations§
Source§impl Clone for PreparedSpeechRequest
impl Clone for PreparedSpeechRequest
Source§fn clone(&self) -> PreparedSpeechRequest
fn clone(&self) -> PreparedSpeechRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PreparedSpeechRequest
impl RefUnwindSafe for PreparedSpeechRequest
impl Send for PreparedSpeechRequest
impl Sync for PreparedSpeechRequest
impl Unpin for PreparedSpeechRequest
impl UnsafeUnpin for PreparedSpeechRequest
impl UnwindSafe for PreparedSpeechRequest
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