pub struct TranscriptTextDeltaEvent_Logprobs {
pub token: Option<String>,
pub logprob: Option<f64>,
pub bytes: Option<Vec<i64>>,
}
Fields§
§token: Option<String>
The token that was used to generate the log probability.
logprob: Option<f64>
The log probability of the token.
bytes: Option<Vec<i64>>
The bytes that were used to generate the log probability.
Trait Implementations§
Source§impl Clone for TranscriptTextDeltaEvent_Logprobs
impl Clone for TranscriptTextDeltaEvent_Logprobs
Source§fn clone(&self) -> TranscriptTextDeltaEvent_Logprobs
fn clone(&self) -> TranscriptTextDeltaEvent_Logprobs
Returns a copy 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 TranscriptTextDeltaEvent_Logprobs
impl Default for TranscriptTextDeltaEvent_Logprobs
Source§fn default() -> TranscriptTextDeltaEvent_Logprobs
fn default() -> TranscriptTextDeltaEvent_Logprobs
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TranscriptTextDeltaEvent_Logprobs
impl RefUnwindSafe for TranscriptTextDeltaEvent_Logprobs
impl Send for TranscriptTextDeltaEvent_Logprobs
impl Sync for TranscriptTextDeltaEvent_Logprobs
impl Unpin for TranscriptTextDeltaEvent_Logprobs
impl UnwindSafe for TranscriptTextDeltaEvent_Logprobs
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