pub struct TranscriptTextDoneEvent_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 TranscriptTextDoneEvent_Logprobs
impl Clone for TranscriptTextDoneEvent_Logprobs
Source§fn clone(&self) -> TranscriptTextDoneEvent_Logprobs
fn clone(&self) -> TranscriptTextDoneEvent_Logprobs
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 TranscriptTextDoneEvent_Logprobs
impl Default for TranscriptTextDoneEvent_Logprobs
Source§fn default() -> TranscriptTextDoneEvent_Logprobs
fn default() -> TranscriptTextDoneEvent_Logprobs
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TranscriptTextDoneEvent_Logprobs
impl RefUnwindSafe for TranscriptTextDoneEvent_Logprobs
impl Send for TranscriptTextDoneEvent_Logprobs
impl Sync for TranscriptTextDoneEvent_Logprobs
impl Unpin for TranscriptTextDoneEvent_Logprobs
impl UnwindSafe for TranscriptTextDoneEvent_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