pub struct TopicTerm {
pub term: String,
pub score: f64,
pub tf: u32,
pub df: u32,
}Fields§
§term: String§score: f64§tf: u32§df: u32Trait Implementations§
Source§impl<'de> Deserialize<'de> for TopicTerm
impl<'de> Deserialize<'de> for TopicTerm
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 TopicTerm
impl RefUnwindSafe for TopicTerm
impl Send for TopicTerm
impl Sync for TopicTerm
impl Unpin for TopicTerm
impl UnsafeUnpin for TopicTerm
impl UnwindSafe for TopicTerm
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