pub struct RealtimeServerEventConversationItemInputAudioTranscriptionDelta {
pub event_id: String,
pub type: String,
pub item_id: String,
pub content_index: Option<i64>,
pub delta: Option<String>,
pub logprobs: Option<Vec<LogProbProperties>>,
}
Expand description
Returned when the text value of an input audio transcription content part is updated.
Fields§
§event_id: String
The unique ID of the server event.
type: String
The event type, must be
conversation.item.input_audio_transcription.delta
.
item_id: String
The ID of the item.
content_index: Option<i64>
The index of the content part in the item’s content array.
delta: Option<String>
The text delta.
logprobs: Option<Vec<LogProbProperties>>
The log probabilities of the transcription.
Trait Implementations§
Source§impl Clone for RealtimeServerEventConversationItemInputAudioTranscriptionDelta
impl Clone for RealtimeServerEventConversationItemInputAudioTranscriptionDelta
Source§fn clone(
&self,
) -> RealtimeServerEventConversationItemInputAudioTranscriptionDelta
fn clone( &self, ) -> RealtimeServerEventConversationItemInputAudioTranscriptionDelta
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 Default for RealtimeServerEventConversationItemInputAudioTranscriptionDelta
impl Default for RealtimeServerEventConversationItemInputAudioTranscriptionDelta
Source§fn default() -> RealtimeServerEventConversationItemInputAudioTranscriptionDelta
fn default() -> RealtimeServerEventConversationItemInputAudioTranscriptionDelta
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RealtimeServerEventConversationItemInputAudioTranscriptionDelta
impl RefUnwindSafe for RealtimeServerEventConversationItemInputAudioTranscriptionDelta
impl Send for RealtimeServerEventConversationItemInputAudioTranscriptionDelta
impl Sync for RealtimeServerEventConversationItemInputAudioTranscriptionDelta
impl Unpin for RealtimeServerEventConversationItemInputAudioTranscriptionDelta
impl UnwindSafe for RealtimeServerEventConversationItemInputAudioTranscriptionDelta
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