Struct icu::pattern::PatternString
source · pub struct PatternString<B>(pub Box<Pattern<B>>)
where
B: PatternBackend;
Tuple Fields§
§0: Box<Pattern<B>>
Methods from Deref<Target = Pattern<B>>§
sourcepub fn iter(
&self,
) -> impl Iterator<Item = PatternItem<'_, <B as PatternBackend>::PlaceholderKey<'_>>>
pub fn iter( &self, ) -> impl Iterator<Item = PatternItem<'_, <B as PatternBackend>::PlaceholderKey<'_>>>
Returns an iterator over the PatternItem
s in this pattern.
sourcepub fn try_interpolate<'a, P>(
&'a self,
value_provider: P,
) -> impl TryWriteable<Error = <B as PatternBackend>::Error<'a>> + Display + 'awhere
P: PlaceholderValueProvider<<B as PatternBackend>::PlaceholderKey<'a>, Error = <B as PatternBackend>::Error<'a>> + 'a,
pub fn try_interpolate<'a, P>(
&'a self,
value_provider: P,
) -> impl TryWriteable<Error = <B as PatternBackend>::Error<'a>> + Display + 'awhere
P: PlaceholderValueProvider<<B as PatternBackend>::PlaceholderKey<'a>, Error = <B as PatternBackend>::Error<'a>> + 'a,
Returns a TryWriteable
that interpolates items from the given replacement provider
into this pattern string.
sourcepub fn try_interpolate_to_string<'a, P>(
&'a self,
value_provider: P,
) -> Result<String, (<B as PatternBackend>::Error<'a>, String)>where
P: PlaceholderValueProvider<<B as PatternBackend>::PlaceholderKey<'a>, Error = <B as PatternBackend>::Error<'a>> + 'a,
pub fn try_interpolate_to_string<'a, P>(
&'a self,
value_provider: P,
) -> Result<String, (<B as PatternBackend>::Error<'a>, String)>where
P: PlaceholderValueProvider<<B as PatternBackend>::PlaceholderKey<'a>, Error = <B as PatternBackend>::Error<'a>> + 'a,
Interpolates the pattern directly to a string, returning the string or an error.
In addition to the error, the lossy fallback string is returned in the failure case.
✨ Enabled with the alloc
Cargo feature.
sourcepub fn interpolate<'a, P>(
&'a self,
value_provider: P,
) -> impl Writeable + Display + 'awhere
P: PlaceholderValueProvider<<B as PatternBackend>::PlaceholderKey<'a>, Error = <B as PatternBackend>::Error<'a>> + 'a,
pub fn interpolate<'a, P>(
&'a self,
value_provider: P,
) -> impl Writeable + Display + 'awhere
P: PlaceholderValueProvider<<B as PatternBackend>::PlaceholderKey<'a>, Error = <B as PatternBackend>::Error<'a>> + 'a,
Returns a Writeable
that interpolates items from the given replacement provider
into this pattern string.
sourcepub fn interpolate_to_string<'a, P>(&'a self, value_provider: P) -> Stringwhere
P: PlaceholderValueProvider<<B as PatternBackend>::PlaceholderKey<'a>, Error = <B as PatternBackend>::Error<'a>> + 'a,
pub fn interpolate_to_string<'a, P>(&'a self, value_provider: P) -> Stringwhere
P: PlaceholderValueProvider<<B as PatternBackend>::PlaceholderKey<'a>, Error = <B as PatternBackend>::Error<'a>> + 'a,
Interpolates the pattern directly to a string.
✨ Enabled with the alloc
Cargo feature.
Trait Implementations§
source§impl<B> Clone for PatternString<B>where
B: PatternBackend,
Box<<B as PatternBackend>::Store>: for<'a> From<&'a <B as PatternBackend>::Store>,
impl<B> Clone for PatternString<B>where
B: PatternBackend,
Box<<B as PatternBackend>::Store>: for<'a> From<&'a <B as PatternBackend>::Store>,
source§fn clone(&self) -> PatternString<B>
fn clone(&self) -> PatternString<B>
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<B> Debug for PatternString<B>where
B: Debug + PatternBackend,
impl<B> Debug for PatternString<B>where
B: Debug + PatternBackend,
source§impl<B> Default for PatternString<B>where
B: PatternBackend,
Box<<B as PatternBackend>::Store>: for<'a> From<&'a <B as PatternBackend>::Store>,
impl<B> Default for PatternString<B>where
B: PatternBackend,
Box<<B as PatternBackend>::Store>: for<'a> From<&'a <B as PatternBackend>::Store>,
source§fn default() -> PatternString<B>
fn default() -> PatternString<B>
Returns the “default value” for a type. Read more
source§impl<B> Deref for PatternString<B>where
B: PatternBackend,
impl<B> Deref for PatternString<B>where
B: PatternBackend,
source§impl<'de, B> Deserialize<'de> for PatternString<B>where
B: PatternBackend,
<B as PatternBackend>::PlaceholderKeyCow<'de>: FromStr,
<<B as PatternBackend>::PlaceholderKeyCow<'de> as FromStr>::Err: Debug,
impl<'de, B> Deserialize<'de> for PatternString<B>where
B: PatternBackend,
<B as PatternBackend>::PlaceholderKeyCow<'de>: FromStr,
<<B as PatternBackend>::PlaceholderKeyCow<'de> as FromStr>::Err: Debug,
source§fn deserialize<D>(
deserializer: D,
) -> Result<PatternString<B>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<PatternString<B>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<B> PartialEq for PatternString<B>where
B: PartialEq + PatternBackend,
impl<B> PartialEq for PatternString<B>where
B: PartialEq + PatternBackend,
impl<B> StructuralPartialEq for PatternString<B>where
B: PatternBackend,
Auto Trait Implementations§
impl<B> Freeze for PatternString<B>
impl<B> RefUnwindSafe for PatternString<B>
impl<B> Send for PatternString<B>
impl<B> Sync for PatternString<B>
impl<B> Unpin for PatternString<B>
impl<B> UnwindSafe for PatternString<B>
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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