Docs.rs
rust-tfidf-1.1.1
rust-tfidf 1.1.1
Permalink
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Repository
crates.io
Source
Owners
ferristseng
Dependencies
Versions
100%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Document
tfidf
1.1.1
Document
Required Associated Types
Term
Implementations on Foreign Types
BTreeMap<T, usize>
HashMap<T, usize>
Vec<(T, usize)>
Implementors
In crate tfidf
tfidf
Trait
Document
Copy item path
Source
pub trait Document { type
Term
; }
Expand description
A body of terms.
Required Associated Types
§
Source
type
Term
The type of term that the document consists of.
Implementations on Foreign Types
§
Source
§
impl<T>
Document
for
BTreeMap
<T,
usize
>
Source
§
type
Term
= T
Source
§
impl<T>
Document
for
Vec
<(T,
usize
)>
Source
§
type
Term
= T
Source
§
impl<T>
Document
for
HashMap
<T,
usize
>
Source
§
type
Term
= T
Implementors
§