pub struct Sentiment {
pub polarity: SentimentPolarity,
pub score: f64,
}
Expand description
Sentiment returned by the model.
Fields§
§polarity: SentimentPolarity
Polarity of the sentiment
score: f64
Confidence score
Trait Implementations§
source§impl<'de> Deserialize<'de> for Sentiment
impl<'de> Deserialize<'de> for Sentiment
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 RefUnwindSafe for Sentiment
impl Send for Sentiment
impl Sync for Sentiment
impl Unpin for Sentiment
impl UnwindSafe for Sentiment
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