pub struct ReplacePatternEntry {
pub find: String,
pub replace: String,
}Expand description
A single replace pattern in config.
Fields§
§find: String§replace: StringTrait Implementations§
Source§impl Clone for ReplacePatternEntry
impl Clone for ReplacePatternEntry
Source§fn clone(&self) -> ReplacePatternEntry
fn clone(&self) -> ReplacePatternEntry
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 ReplacePatternEntry
impl Debug for ReplacePatternEntry
Source§impl<'de> Deserialize<'de> for ReplacePatternEntry
impl<'de> Deserialize<'de> for ReplacePatternEntry
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 ReplacePatternEntry
impl RefUnwindSafe for ReplacePatternEntry
impl Send for ReplacePatternEntry
impl Sync for ReplacePatternEntry
impl Unpin for ReplacePatternEntry
impl UnsafeUnpin for ReplacePatternEntry
impl UnwindSafe for ReplacePatternEntry
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