pub struct CleanLineResult {
pub line: String,
pub bad_words_count: usize,
pub bad_phrases_count: usize,
pub detected_bad_words: Vec<Box<str>>,
pub detected_patterns: Vec<Box<str>>,
}Fields§
§line: String§bad_words_count: usize§bad_phrases_count: usize§detected_bad_words: Vec<Box<str>>§detected_patterns: Vec<Box<str>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CleanLineResult
impl RefUnwindSafe for CleanLineResult
impl Send for CleanLineResult
impl Sync for CleanLineResult
impl Unpin for CleanLineResult
impl UnsafeUnpin for CleanLineResult
impl UnwindSafe for CleanLineResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more