pub struct VoiceLibraryQuery {
pub query: Option<String>,
pub page_size: Option<i32>,
pub cursor: Option<String>,
pub gender: Option<String>,
pub language: Option<String>,
pub use_case: Option<String>,
}Expand description
Request parameters for browsing the voice library.
Fields§
§query: Option<String>Search query string.
page_size: Option<i32>Maximum number of results per page.
cursor: Option<String>Pagination cursor from a previous response.
gender: Option<String>Filter by gender.
language: Option<String>Filter by language.
use_case: Option<String>Filter by use case.
Trait Implementations§
Source§impl Clone for VoiceLibraryQuery
impl Clone for VoiceLibraryQuery
Source§fn clone(&self) -> VoiceLibraryQuery
fn clone(&self) -> VoiceLibraryQuery
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 VoiceLibraryQuery
impl Debug for VoiceLibraryQuery
Source§impl Default for VoiceLibraryQuery
impl Default for VoiceLibraryQuery
Source§fn default() -> VoiceLibraryQuery
fn default() -> VoiceLibraryQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VoiceLibraryQuery
impl RefUnwindSafe for VoiceLibraryQuery
impl Send for VoiceLibraryQuery
impl Sync for VoiceLibraryQuery
impl Unpin for VoiceLibraryQuery
impl UnsafeUnpin for VoiceLibraryQuery
impl UnwindSafe for VoiceLibraryQuery
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