pub struct CleanConfig {
pub fix_variants: bool,
pub remove_fillers: bool,
pub dedupe_repetitions: bool,
pub normalize: bool,
pub user_fillers: Vec<String>,
}Expand description
Configuração da limpeza. Flags por passada + muletas extras do usuário (regra genérica: só posição isolada). O default é o comportamento completo documentado no ADR-0009.
Fields§
§fix_variants: bool§remove_fillers: bool§dedupe_repetitions: bool§normalize: bool§user_fillers: Vec<String>Muletas do usuário (ex.: “mano”, “percebe”) — sem recompilar; campo reservado para a UI de configurações.
Trait Implementations§
Source§impl Clone for CleanConfig
impl Clone for CleanConfig
Source§fn clone(&self) -> CleanConfig
fn clone(&self) -> CleanConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CleanConfig
impl Debug for CleanConfig
Auto Trait Implementations§
impl Freeze for CleanConfig
impl RefUnwindSafe for CleanConfig
impl Send for CleanConfig
impl Sync for CleanConfig
impl Unpin for CleanConfig
impl UnsafeUnpin for CleanConfig
impl UnwindSafe for CleanConfig
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