Refactor sidecars

This commit is contained in:
2026-03-16 22:24:30 -07:00
parent f2f5726d7b
commit 12130a0471
26 changed files with 677 additions and 530 deletions

View File

@@ -58,7 +58,7 @@ pub enum PathSegment {
/// - `$` refers to the root object
/// - `.<name>` selects aPathSegment::Field of an object
/// - `[n]` selects an item of an array
#[derive(Debug, Clone)]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ObjectPath {
pub segments: Vec<PathSegment>,
}