pub struct AddVoiceFromLibraryRequest {
pub public_owner_id: String,
pub voice_id: String,
pub name: Option<String>,
}Expand description
Request body for adding a shared voice from the library.
Fields§
§public_owner_id: StringPublic owner identifier.
voice_id: StringVoice identifier in the library.
name: Option<String>Optional display name (defaults to the library name).
Trait Implementations§
Source§impl Clone for AddVoiceFromLibraryRequest
impl Clone for AddVoiceFromLibraryRequest
Source§fn clone(&self) -> AddVoiceFromLibraryRequest
fn clone(&self) -> AddVoiceFromLibraryRequest
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 AddVoiceFromLibraryRequest
impl Debug for AddVoiceFromLibraryRequest
Source§impl Default for AddVoiceFromLibraryRequest
impl Default for AddVoiceFromLibraryRequest
Source§fn default() -> AddVoiceFromLibraryRequest
fn default() -> AddVoiceFromLibraryRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AddVoiceFromLibraryRequest
impl RefUnwindSafe for AddVoiceFromLibraryRequest
impl Send for AddVoiceFromLibraryRequest
impl Sync for AddVoiceFromLibraryRequest
impl Unpin for AddVoiceFromLibraryRequest
impl UnsafeUnpin for AddVoiceFromLibraryRequest
impl UnwindSafe for AddVoiceFromLibraryRequest
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