pub struct TokenLogprob {
pub token: String,
pub logprob: f64,
pub bytes: Option<Vec<i32>>,
pub top_logprobs: Vec<TopLogprob>,
}Expand description
Token log probability information
Fields§
§token: StringThe token
logprob: f64Log probability of the token
bytes: Option<Vec<i32>>UTF-8 bytes representation of the token
top_logprobs: Vec<TopLogprob>Top log probabilities at this position
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 · 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 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