pub struct ContextFrame {
pub data: Value,
pub metadata: Option<HashMap<String, Value>>,
}Expand description
A single frame in the context stack (for temporary/nested contexts)
Fields§
§data: ValueThe data value at this context level
metadata: Option<HashMap<String, Value>>Optional metadata for this frame (e.g., “index”, “key” in map operations)
Auto Trait Implementations§
impl Freeze for ContextFrame
impl RefUnwindSafe for ContextFrame
impl Send for ContextFrame
impl Sync for ContextFrame
impl Unpin for ContextFrame
impl UnwindSafe for ContextFrame
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