pub struct SkipConfig {
pub patterns: Vec<String>,
}Expand description
Extra skip patterns from user config.
Fields§
§patterns: Vec<String>Regex patterns — if any matches the command, rewriting is skipped.
Trait Implementations§
Source§impl Clone for SkipConfig
impl Clone for SkipConfig
Source§fn clone(&self) -> SkipConfig
fn clone(&self) -> SkipConfig
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 SkipConfig
impl Debug for SkipConfig
Source§impl Default for SkipConfig
impl Default for SkipConfig
Source§fn default() -> SkipConfig
fn default() -> SkipConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SkipConfig
impl<'de> Deserialize<'de> for SkipConfig
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
Auto Trait Implementations§
impl Freeze for SkipConfig
impl RefUnwindSafe for SkipConfig
impl Send for SkipConfig
impl Sync for SkipConfig
impl Unpin for SkipConfig
impl UnsafeUnpin for SkipConfig
impl UnwindSafe for SkipConfig
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