pub struct VoicePreview {
pub generated_voice_id: String,
pub audio_base64: String,
pub format: String,
}Expand description
A single voice preview from voice design.
Fields§
§generated_voice_id: String§audio_base64: String§format: StringTrait Implementations§
Source§impl Clone for VoicePreview
impl Clone for VoicePreview
Source§fn clone(&self) -> VoicePreview
fn clone(&self) -> VoicePreview
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 VoicePreview
impl Debug for VoicePreview
Source§impl<'de> Deserialize<'de> for VoicePreview
impl<'de> Deserialize<'de> for VoicePreview
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 VoicePreview
impl RefUnwindSafe for VoicePreview
impl Send for VoicePreview
impl Sync for VoicePreview
impl Unpin for VoicePreview
impl UnsafeUnpin for VoicePreview
impl UnwindSafe for VoicePreview
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