pub struct LogProbProperties {
pub bytes: Vec<u8>,
pub logprob: f64,
pub token: String,
}Available on crate feature
audio-types only.Expand description
Log probability information for a transcribed token.
Fields§
§bytes: Vec<u8>The bytes that were used to generate the log probability.
logprob: f64The log probability of the token.
token: StringThe token that was used to generate the log probability.
Trait Implementations§
Source§impl Clone for LogProbProperties
Available on (crate features audio-types or realtime-types) and (crate features response-types or video-types or vectorstore-types or chat-completion-types or assistant-types or batch-types or audio-types or realtime-types or image-types) only.
impl Clone for LogProbProperties
Available on (crate features
audio-types or realtime-types) and (crate features response-types or video-types or vectorstore-types or chat-completion-types or assistant-types or batch-types or audio-types or realtime-types or image-types) only.Source§fn clone(&self) -> LogProbProperties
fn clone(&self) -> LogProbProperties
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 Debug for LogProbProperties
Available on (crate features audio-types or realtime-types) and (crate features response-types or video-types or vectorstore-types or chat-completion-types or assistant-types or batch-types or audio-types or realtime-types or image-types) only.
impl Debug for LogProbProperties
Available on (crate features
audio-types or realtime-types) and (crate features response-types or video-types or vectorstore-types or chat-completion-types or assistant-types or batch-types or audio-types or realtime-types or image-types) only.Source§impl<'de> Deserialize<'de> for LogProbProperties
Available on (crate features audio-types or realtime-types) and (crate features response-types or video-types or vectorstore-types or chat-completion-types or assistant-types or batch-types or audio-types or realtime-types or image-types) only.
impl<'de> Deserialize<'de> for LogProbProperties
Available on (crate features
audio-types or realtime-types) and (crate features response-types or video-types or vectorstore-types or chat-completion-types or assistant-types or batch-types or audio-types or realtime-types or image-types) only.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
Source§impl Serialize for LogProbProperties
Available on (crate features audio-types or realtime-types) and (crate features response-types or video-types or vectorstore-types or chat-completion-types or assistant-types or batch-types or audio-types or realtime-types or image-types) only.
impl Serialize for LogProbProperties
Available on (crate features
audio-types or realtime-types) and (crate features response-types or video-types or vectorstore-types or chat-completion-types or assistant-types or batch-types or audio-types or realtime-types or image-types) only.Auto Trait Implementations§
impl Freeze for LogProbProperties
impl RefUnwindSafe for LogProbProperties
impl Send for LogProbProperties
impl Sync for LogProbProperties
impl Unpin for LogProbProperties
impl UnsafeUnpin for LogProbProperties
impl UnwindSafe for LogProbProperties
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