INNER CODE UNIT · Rust
chunks
bminixhofer/nlprule · python/src/lib.rs:232
fn chunks(&self) -> Vec<&str> {
self.token.chunks.iter().map(|x| x.as_str()).collect()
}
}
/// A replacement suggestion with the attributes:
/// * start (int): The start character position of the suggestion in the original text.
/// * end (int): The end character position of the suggestion in the original text.
/// * text (List[str]): A list of suggested replacements.
/// * source (str): The ID of the rule that triggered this suggestion.
/// * message (str): A human-readable message for this suggestion.
#[pyclass(name = "Suggestion", module = "nlprule")]
struct PySuggestion {
suggestion: Suggestion,
}
#[pymethods]
impl PySuggestion {