pub struct VoicesResponse {
pub model: String,
pub voices: Vec<Voice>,
}Expand description
GET /v1/audio/voices response.
Fields§
§model: String§voices: Vec<Voice>Trait Implementations§
Source§impl Clone for VoicesResponse
impl Clone for VoicesResponse
Source§fn clone(&self) -> VoicesResponse
fn clone(&self) -> VoicesResponse
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 moreSource§impl Debug for VoicesResponse
impl Debug for VoicesResponse
Source§impl<'de> Deserialize<'de> for VoicesResponse
impl<'de> Deserialize<'de> for VoicesResponse
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
Source§impl PartialEq for VoicesResponse
impl PartialEq for VoicesResponse
Source§impl Serialize for VoicesResponse
impl Serialize for VoicesResponse
impl StructuralPartialEq for VoicesResponse
Auto Trait Implementations§
impl Freeze for VoicesResponse
impl RefUnwindSafe for VoicesResponse
impl Send for VoicesResponse
impl Sync for VoicesResponse
impl Unpin for VoicesResponse
impl UnsafeUnpin for VoicesResponse
impl UnwindSafe for VoicesResponse
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