pub struct Voice {Show 15 fields
pub name: String,
pub display_name: String,
pub local_name: String,
pub short_name: String,
pub gender: String,
pub locale: String,
pub locale_name: String,
pub sample_rate_hertz: String,
pub voice_type: String,
pub status: String,
pub words_per_minute: Option<String>,
pub style_list: Option<Vec<String>>,
pub role_play_list: Option<Vec<String>>,
pub secondary_locale_list: Option<Vec<String>>,
pub extended_property_map: Option<HashMap<String, String>>,
}
Fields§
§name: String
§display_name: String
§local_name: String
§short_name: String
§gender: String
§locale: String
§locale_name: String
§sample_rate_hertz: String
§voice_type: String
§status: String
§words_per_minute: Option<String>
§style_list: Option<Vec<String>>
§role_play_list: Option<Vec<String>>
§secondary_locale_list: Option<Vec<String>>
§extended_property_map: Option<HashMap<String, String>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Voice
impl<'de> Deserialize<'de> for Voice
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 Voice
impl RefUnwindSafe for Voice
impl Send for Voice
impl Sync for Voice
impl Unpin for Voice
impl UnwindSafe for Voice
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