#[non_exhaustive]pub struct TokenLogprob {
pub token: String,
pub logprob: f64,
pub bytes: Option<Vec<u8>>,
pub top_logprobs: Vec<TopLogprob>,
}Expand description
Log-probability information for one generated token, mirroring
chat_completion_token_logprob.py.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.token: String§logprob: f64§bytes: Option<Vec<u8>>UTF-8 byte values of the token, when it isn’t valid UTF-8 on its own.
top_logprobs: Vec<TopLogprob>Trait Implementations§
Source§impl Clone for TokenLogprob
impl Clone for TokenLogprob
Source§fn clone(&self) -> TokenLogprob
fn clone(&self) -> TokenLogprob
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TokenLogprob
impl Debug for TokenLogprob
Source§impl<'de> Deserialize<'de> for TokenLogprob
impl<'de> Deserialize<'de> for TokenLogprob
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 TokenLogprob
impl RefUnwindSafe for TokenLogprob
impl Send for TokenLogprob
impl Sync for TokenLogprob
impl Unpin for TokenLogprob
impl UnsafeUnpin for TokenLogprob
impl UnwindSafe for TokenLogprob
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