pub struct AddVoiceToProviderDto {
pub owner_id: String,
pub voice_id: String,
pub name: String,
}
Fields§
§owner_id: String
This is the owner_id of your shared voice which you want to add to your provider Account from Provider Voice Library
voice_id: String
This is the voice_id of the shared voice which you want to add to your provider Account from Provider Voice Library
name: String
This is the new name of the voice which you want to have once you have added voice to your provider Account from Provider Voice Library
Implementations§
Trait Implementations§
Source§impl Clone for AddVoiceToProviderDto
impl Clone for AddVoiceToProviderDto
Source§fn clone(&self) -> AddVoiceToProviderDto
fn clone(&self) -> AddVoiceToProviderDto
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 AddVoiceToProviderDto
impl Debug for AddVoiceToProviderDto
Source§impl Default for AddVoiceToProviderDto
impl Default for AddVoiceToProviderDto
Source§fn default() -> AddVoiceToProviderDto
fn default() -> AddVoiceToProviderDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddVoiceToProviderDto
impl<'de> Deserialize<'de> for AddVoiceToProviderDto
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 AddVoiceToProviderDto
impl PartialEq for AddVoiceToProviderDto
Source§impl Serialize for AddVoiceToProviderDto
impl Serialize for AddVoiceToProviderDto
impl StructuralPartialEq for AddVoiceToProviderDto
Auto Trait Implementations§
impl Freeze for AddVoiceToProviderDto
impl RefUnwindSafe for AddVoiceToProviderDto
impl Send for AddVoiceToProviderDto
impl Sync for AddVoiceToProviderDto
impl Unpin for AddVoiceToProviderDto
impl UnwindSafe for AddVoiceToProviderDto
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