pub struct TranscriptResponse {
pub id: Option<String>,
pub asset_ids: Vec<String>,
pub segments: Vec<Segment>,
}Expand description
A model response transcript entry.
Fields§
§id: Option<String>§asset_ids: Vec<String>§segments: Vec<Segment>Trait Implementations§
Source§impl Clone for TranscriptResponse
impl Clone for TranscriptResponse
Source§fn clone(&self) -> TranscriptResponse
fn clone(&self) -> TranscriptResponse
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 TranscriptResponse
impl Debug for TranscriptResponse
Source§impl PartialEq for TranscriptResponse
impl PartialEq for TranscriptResponse
Source§fn eq(&self, other: &TranscriptResponse) -> bool
fn eq(&self, other: &TranscriptResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TranscriptResponse
Auto Trait Implementations§
impl Freeze for TranscriptResponse
impl RefUnwindSafe for TranscriptResponse
impl Send for TranscriptResponse
impl Sync for TranscriptResponse
impl Unpin for TranscriptResponse
impl UnsafeUnpin for TranscriptResponse
impl UnwindSafe for TranscriptResponse
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