pub enum PatternItemCow<'a, T> {
    Placeholder(T),
    Literal(Cow<'a, str>),
}Expand description
A borrowed-or-owned item in a Pattern. Items are either string literals or placeholders.
✨ Enabled with the alloc Cargo feature.
Variants§
Placeholder(T)
A placeholder of the type specified on this PatternItemCow.
Literal(Cow<'a, str>)
A string literal. This can occur in one of three places:
- Between the start of the string and the first placeholder (prefix)
 - Between two placeholders (infix)
 - Between the final placeholder and the end of the string (suffix)
 
Trait Implementations§
Source§impl<'a, T: Clone> Clone for PatternItemCow<'a, T>
 
impl<'a, T: Clone> Clone for PatternItemCow<'a, T>
Source§fn clone(&self) -> PatternItemCow<'a, T>
 
fn clone(&self) -> PatternItemCow<'a, T>
Returns a copy 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<'a, T: Debug> Debug for PatternItemCow<'a, T>
 
impl<'a, T: Debug> Debug for PatternItemCow<'a, T>
Source§impl<'de: 'a, 'a, T> Deserialize<'de> for PatternItemCow<'a, T>where
    T: Deserialize<'de>,
 
impl<'de: 'a, 'a, T> Deserialize<'de> for PatternItemCow<'a, T>where
    T: Deserialize<'de>,
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<'a, K> From<ParsedPatternItem<'a, K>> for PatternItemCow<'a, K>
 
impl<'a, K> From<ParsedPatternItem<'a, K>> for PatternItemCow<'a, K>
Source§fn from(value: ParsedPatternItem<'a, K>) -> Self
 
fn from(value: ParsedPatternItem<'a, K>) -> Self
Converts to this type from the input type.
Source§impl<'a, T, U> From<PatternItem<'a, U>> for PatternItemCow<'a, T>where
    T: From<U>,
 
impl<'a, T, U> From<PatternItem<'a, U>> for PatternItemCow<'a, T>where
    T: From<U>,
Source§fn from(value: PatternItem<'a, U>) -> Self
 
fn from(value: PatternItem<'a, U>) -> Self
Converts to this type from the input type.
Source§impl<'a, T: Ord> Ord for PatternItemCow<'a, T>
 
impl<'a, T: Ord> Ord for PatternItemCow<'a, T>
Source§fn cmp(&self, other: &PatternItemCow<'a, T>) -> Ordering
 
fn cmp(&self, other: &PatternItemCow<'a, T>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a, T: PartialEq> PartialEq for PatternItemCow<'a, T>
 
impl<'a, T: PartialEq> PartialEq for PatternItemCow<'a, T>
Source§impl<'a, T: PartialOrd> PartialOrd for PatternItemCow<'a, T>
 
impl<'a, T: PartialOrd> PartialOrd for PatternItemCow<'a, T>
Source§impl<'a, T> Serialize for PatternItemCow<'a, T>where
    T: Serialize,
 
impl<'a, T> Serialize for PatternItemCow<'a, T>where
    T: Serialize,
impl<'a, T: Eq> Eq for PatternItemCow<'a, T>
impl<'a, T> StructuralPartialEq for PatternItemCow<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for PatternItemCow<'a, T>where
    T: Freeze,
impl<'a, T> RefUnwindSafe for PatternItemCow<'a, T>where
    T: RefUnwindSafe,
impl<'a, T> Send for PatternItemCow<'a, T>where
    T: Send,
impl<'a, T> Sync for PatternItemCow<'a, T>where
    T: Sync,
impl<'a, T> Unpin for PatternItemCow<'a, T>where
    T: Unpin,
impl<'a, T> UnwindSafe for PatternItemCow<'a, T>where
    T: UnwindSafe,
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<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more