pub struct CaseInsensitivePattern {
pub pattern: String,
pub replacement: String,
}Expand description
Case-insensitive pattern replacement
Fields§
§pattern: StringPattern to search for (case-insensitive)
replacement: StringReplacement text
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CaseInsensitivePattern
impl RefUnwindSafe for CaseInsensitivePattern
impl Send for CaseInsensitivePattern
impl Sync for CaseInsensitivePattern
impl Unpin for CaseInsensitivePattern
impl UnwindSafe for CaseInsensitivePattern
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