pub struct RemixVoiceResponse {
pub audio_base64: Option<String>,
pub format: String,
pub size_bytes: i64,
pub voice_id: Option<String>,
pub cost_ticks: i64,
pub request_id: String,
}Expand description
Response from voice remixing.
Fields§
§audio_base64: Option<String>§format: String§size_bytes: i64§voice_id: Option<String>§cost_ticks: i64§request_id: StringTrait Implementations§
Source§impl Clone for RemixVoiceResponse
impl Clone for RemixVoiceResponse
Source§fn clone(&self) -> RemixVoiceResponse
fn clone(&self) -> RemixVoiceResponse
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 RemixVoiceResponse
impl Debug for RemixVoiceResponse
Source§impl<'de> Deserialize<'de> for RemixVoiceResponse
impl<'de> Deserialize<'de> for RemixVoiceResponse
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
Auto Trait Implementations§
impl Freeze for RemixVoiceResponse
impl RefUnwindSafe for RemixVoiceResponse
impl Send for RemixVoiceResponse
impl Sync for RemixVoiceResponse
impl Unpin for RemixVoiceResponse
impl UnsafeUnpin for RemixVoiceResponse
impl UnwindSafe for RemixVoiceResponse
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