pub enum RegexOption {
Extended,
Caseless,
Multiline,
DotAll,
}Variants§
Trait Implementations§
Source§impl Clone for RegexOption
impl Clone for RegexOption
Source§fn clone(&self) -> RegexOption
fn clone(&self) -> RegexOption
Returns a duplicate of the value. Read more
1.0.0 · 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 RegexOption
impl Debug for RegexOption
Source§impl<'de> Deserialize<'de> for RegexOption
impl<'de> Deserialize<'de> for RegexOption
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RegexOption
impl PartialEq for RegexOption
Source§impl Serialize for RegexOption
impl Serialize for RegexOption
impl Copy for RegexOption
impl Eq for RegexOption
impl StructuralPartialEq for RegexOption
Auto Trait Implementations§
impl Freeze for RegexOption
impl RefUnwindSafe for RegexOption
impl Send for RegexOption
impl Sync for RegexOption
impl Unpin for RegexOption
impl UnsafeUnpin for RegexOption
impl UnwindSafe for RegexOption
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