pub struct RealtimeServerEventConversationItemInputAudioTranscriptionDelta {
pub content_index: Option<i32>,
pub delta: Option<String>,
pub event_id: String,
pub item_id: String,
pub logprobs: Option<Vec<LogProbProperties>>,
pub _type: String,
}Fields§
§content_index: Option<i32>The index of the content part in the item’s content array.
delta: Option<String>The text delta.
event_id: StringThe unique ID of the server event.
item_id: StringThe ID of the item.
logprobs: Option<Vec<LogProbProperties>>The log probabilities of the transcription.
_type: StringThe event type, must be conversation.item.input_audio_transcription.delta.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RealtimeServerEventConversationItemInputAudioTranscriptionDelta
impl<'de> Deserialize<'de> for RealtimeServerEventConversationItemInputAudioTranscriptionDelta
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 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