pub struct VoiceInfoDto {
pub id: String,
pub name: String,
pub category: String,
}Expand description
Information about a single TTS voice.
Fields§
§id: StringVoice identifier used in API calls.
name: StringHuman-readable display name.
category: StringLanguage/accent category.
Trait Implementations§
Source§impl Clone for VoiceInfoDto
impl Clone for VoiceInfoDto
Source§fn clone(&self) -> VoiceInfoDto
fn clone(&self) -> VoiceInfoDto
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 VoiceInfoDto
impl Debug for VoiceInfoDto
Source§impl<'de> Deserialize<'de> for VoiceInfoDto
impl<'de> Deserialize<'de> for VoiceInfoDto
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 VoiceInfoDto
impl RefUnwindSafe for VoiceInfoDto
impl Send for VoiceInfoDto
impl Sync for VoiceInfoDto
impl Unpin for VoiceInfoDto
impl UnwindSafe for VoiceInfoDto
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