pub trait Clean {
Show 13 methods
// Required methods
fn trim(&self) -> String;
fn remove_leading_spaces(&self) -> String;
fn remove_trailing_spaces(&self) -> String;
fn remove_empty_lines(&self) -> String;
fn convert_multiple_spaces_to_single(&self) -> String;
fn remove_all_emojis(&self) -> String;
fn remove_punctuation_marks(&self) -> String;
fn remove_letter_accents(&self) -> String;
fn normalize_unicode_characters(&self) -> String;
fn remove_non_ascii_characters(&self) -> String;
fn remove_non_alphanumeric_characters(&self) -> String;
fn remove_all_emails(&self) -> String;
fn remove_all_urls(&self) -> String;
}