1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//! # RustNAO
//!
//! A Rust implementation of a wrapper for the SauceNAO API.
//!
//](https://crates.io/crates/rustnao)
//](https://docs.rs/rustnao)
//!
//! ## Installation
//!
//! Add the following to your ``Cargo.toml`` file:
//!
//! ```toml
//! [dependencies]
//! rustnao = "0.3.4"
//! ```
//!
//! ## Examples
//!
//! Here's a simple example:
//!
//! ```no_run
//! use rustnao::{Handler, HandlerBuilder, Sauce, Result};
//!
//! fn main() {
//! let api_key = "your_api_key";
//! let file = "https://i.imgur.com/W42kkKS.jpg";
//!
//! // Specifying our key, test_mode set to 0, only want to see Pixiv and Sankaku using a mask, nothing excluded, no one specific source, and 15 results at most.
//! let handle = HandlerBuilder::default().api_key(api_key).db_mask([Handler::PIXIV, Handler::SANKAKU_CHANNEL].to_vec()).num_results(15).build();
//!
//! // Set the minimum similarity to 45.
//! handle.set_min_similarity(45);
//!
//! // Returns a vector of Sauce objects if successful
//! let result: Vec<Sauce> = handle.get_sauce(file, None, None).unwrap();
//!
//! // Or perhaps you prefer a JSON output
//! let result_json: String = handle.get_sauce_as_pretty_json(file, None, None).unwrap();
//!
//! // Or maybe you wish to only get 5 results with a min similarity of 50.0
//! let result_json_filtered: String = handle.get_sauce_as_pretty_json(file, Some(5), Some(50 as f64)).unwrap();
//! }
//! ```
// TODO: further docs on use-case (see Sagiri)
pub use ;