referencing 0.46.5

An implementation-agnostic JSON reference resolution library for Rust.
Documentation
use std::borrow::Cow;

/// Represents a sequence of segments in a JSON pointer.
///
/// Used to track the path during JSON pointer resolution.
pub(crate) struct Segments<'a>(Vec<Segment<'a>>);

impl<'a> Segments<'a> {
    /// Creates a new, empty `Segments` instance.
    pub(crate) fn new() -> Self {
        Self(Vec::new())
    }

    /// Adds a new segment to the sequence.
    pub(crate) fn push(&mut self, segment: impl Into<Segment<'a>>) {
        self.0.push(segment.into());
    }

    /// Returns an iterator over the segments.
    pub(crate) fn iter(&self) -> impl Iterator<Item = &Segment<'a>> {
        self.0.iter()
    }
}

/// Represents a single segment in a JSON pointer.
#[derive(Debug, PartialEq, Eq, Clone)]
pub(crate) enum Segment<'a> {
    /// A string key for object properties.
    Key(Cow<'a, str>),
    /// A numeric index for array elements.
    Index(usize),
}

impl<'a> From<Cow<'a, str>> for Segment<'a> {
    fn from(value: Cow<'a, str>) -> Self {
        Segment::Key(value)
    }
}

impl From<usize> for Segment<'_> {
    fn from(value: usize) -> Self {
        Segment::Index(value)
    }
}