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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
use serde_json::json;
pub use crate::api::{API, Texts, TextsBatch};
/// Segmentation definition
pub struct Segmentation {
api: API
}
/// Segmentation implementation
impl Segmentation {
/// Creates a Segmentation instance.
///
pub fn new() -> Segmentation {
Segmentation {
api: API::new()
}
}
/// Creates a Segmentation instance.
///
/// # Arguments
/// * `url` - API url
pub fn with_url(url: &str) -> Segmentation {
Segmentation {
api: API::with_url(url)
}
}
/// Creates a Segmentation instance.
///
/// # Arguments
/// * `url` - API url
/// * `token` - API token
pub fn with_url_token(url: &str, token: &str) -> Segmentation {
Segmentation {
api: API::with_url_token(url, token)
}
}
/// Segments text into semantic units.
///
/// # Arguments
/// * `text` input text
pub async fn segment(&self, text: &str) -> Texts {
// Query parameters
let params = [("text", text)];
// Execute API call
Ok(self.api.get("segment", ¶ms).await?.json().await?)
}
/// Segments text into semantic units.
///
/// # Arguments
/// * `texts` list of texts to segment
pub async fn batchsegment(&self, texts: &Vec<&str>) -> TextsBatch {
// Post parameters
let params = json!(texts);
// Execute API call
Ok(self.api.post("batchsegment", ¶ms).await?.json().await?)
}
}