pub struct PreviewVoiceOptions {
pub voice_id: String,
pub text: Option<String>,
}Fields§
§voice_id: StringVoice ID to preview
text: Option<String>Optional custom sample text (uses default if not provided)
Trait Implementations§
Source§impl Clone for PreviewVoiceOptions
impl Clone for PreviewVoiceOptions
Source§fn clone(&self) -> PreviewVoiceOptions
fn clone(&self) -> PreviewVoiceOptions
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 PreviewVoiceOptions
impl Debug for PreviewVoiceOptions
Source§impl<'de> Deserialize<'de> for PreviewVoiceOptions
impl<'de> Deserialize<'de> for PreviewVoiceOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PreviewVoiceOptions
impl RefUnwindSafe for PreviewVoiceOptions
impl Send for PreviewVoiceOptions
impl Sync for PreviewVoiceOptions
impl Unpin for PreviewVoiceOptions
impl UnsafeUnpin for PreviewVoiceOptions
impl UnwindSafe for PreviewVoiceOptions
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