1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
// This file is part of ICU4X. For terms of use, please see the file
// called LICENSE at the top level of the ICU4X source tree
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
use alloc::borrow::Cow;
/// A [`PatternItem`] with additional detail returned by the [`Parser`].
///
/// ✨ *Enabled with the `alloc` Cargo feature.*
///
/// # Examples
///
/// ```
/// use icu_pattern::{ParsedPatternItem, Parser, ParserOptions};
///
/// let input = "{0}, {1}";
///
/// let mut parser = Parser::new(input, ParserOptions::default());
///
/// let mut result = vec![];
///
/// while let Some(element) =
/// parser.try_next().expect("Failed to advance iterator")
/// {
/// result.push(element);
/// }
///
/// assert_eq!(
/// result,
/// &[
/// ParsedPatternItem::Placeholder(0),
/// ParsedPatternItem::Literal {
/// content: ", ".into(),
/// quoted: false
/// },
/// ParsedPatternItem::Placeholder(1),
/// ]
/// );
/// ```
///
/// # Type parameters
///
/// - `P`: A placeholder type which implements [`FromStr`].
///
/// # Lifetimes
///
/// - `s`: The life time of an input string slice being parsed.
///
/// [`Parser`]: crate::Parser
/// [`PatternItem`]: crate::PatternItem
/// [`FromStr`]: core::str::FromStr
#[derive(PartialEq, Debug, Clone)]
#[non_exhaustive]
pub enum ParsedPatternItem<'s, P> {
Placeholder(P),
Literal { content: Cow<'s, str>, quoted: bool },
}
impl<'s, P> From<(&'s str, bool)> for ParsedPatternItem<'s, P> {
fn from(input: (&'s str, bool)) -> Self {
Self::Literal {
content: Cow::Borrowed(input.0),
quoted: input.1,
}
}
}