pub struct NotChars(/* private fields */);
Expand description
Regex syntax for a character class excluding the characters in the input IntoIterator
§Example
use readable_regex::solvers::NotChars;
let query = NotChars::new("abc");
assert_eq!(query.to_string(), "[^abc]");
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NotChars
impl RefUnwindSafe for NotChars
impl Send for NotChars
impl Sync for NotChars
impl Unpin for NotChars
impl UnwindSafe for NotChars
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