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