pub struct TranscriptChunk {
pub response_id: String,
pub item_id: String,
pub output_index: u32,
pub content_index: u32,
pub text: String,
pub is_final: bool,
}Fields§
§response_id: String§item_id: String§output_index: u32§content_index: u32§text: String§is_final: boolTrait Implementations§
Source§impl Clone for TranscriptChunk
impl Clone for TranscriptChunk
Source§fn clone(&self) -> TranscriptChunk
fn clone(&self) -> TranscriptChunk
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 moreAuto Trait Implementations§
impl Freeze for TranscriptChunk
impl RefUnwindSafe for TranscriptChunk
impl Send for TranscriptChunk
impl Sync for TranscriptChunk
impl Unpin for TranscriptChunk
impl UnwindSafe for TranscriptChunk
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