pub struct ListVoicesResponse {
pub voices: Option<Vec<Voice>>,
}Expand description
The message returned to the client by the ListVoices method.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- list voices (response)
Fields§
§voices: Option<Vec<Voice>>The list of voices.
Trait Implementations§
Source§impl Clone for ListVoicesResponse
impl Clone for ListVoicesResponse
Source§fn clone(&self) -> ListVoicesResponse
fn clone(&self) -> ListVoicesResponse
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 ListVoicesResponse
impl Debug for ListVoicesResponse
Source§impl Default for ListVoicesResponse
impl Default for ListVoicesResponse
Source§fn default() -> ListVoicesResponse
fn default() -> ListVoicesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListVoicesResponse
impl<'de> Deserialize<'de> for ListVoicesResponse
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 Serialize for ListVoicesResponse
impl Serialize for ListVoicesResponse
impl ResponseResult for ListVoicesResponse
Auto Trait Implementations§
impl Freeze for ListVoicesResponse
impl RefUnwindSafe for ListVoicesResponse
impl Send for ListVoicesResponse
impl Sync for ListVoicesResponse
impl Unpin for ListVoicesResponse
impl UnwindSafe for ListVoicesResponse
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