pub struct Pattern { /* private fields */ }Implementations§
Source§impl Pattern
impl Pattern
Sourcepub fn run<'input, V>(&self, input: &'input str) -> Option<V>where
V: ValueBuilder<'input> + MutableObject + 'input,
<V as MutableObject>::Key: Hash + Eq + From<&'input str>,
<V as MutableObject>::Target: From<&'input str>,
pub fn run<'input, V>(&self, input: &'input str) -> Option<V>where
V: ValueBuilder<'input> + MutableObject + 'input,
<V as MutableObject>::Key: Hash + Eq + From<&'input str>,
<V as MutableObject>::Target: From<&'input str>,
Splits a string that represents KV pairs.
input- The input string
Note: Fields that have on value are dropped.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Pattern
impl<'de> Deserialize<'de> for Pattern
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
impl Eq for Pattern
impl StructuralPartialEq for Pattern
Auto Trait Implementations§
impl Freeze for Pattern
impl RefUnwindSafe for Pattern
impl Send for Pattern
impl Sync for Pattern
impl Unpin for Pattern
impl UnwindSafe for Pattern
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.