pub struct PatchPath {
pub node_id: NodeId,
pub segments: Vec<String>,
}Expand description
Path address for scalar field or metadata updates.
Fields§
§node_id: NodeIdStable id of the root node that owns the path.
segments: Vec<String>Field path segments below the node.
Trait Implementations§
impl Eq for PatchPath
impl StructuralPartialEq for PatchPath
Auto Trait Implementations§
impl Freeze for PatchPath
impl RefUnwindSafe for PatchPath
impl Send for PatchPath
impl Sync for PatchPath
impl Unpin for PatchPath
impl UnsafeUnpin for PatchPath
impl UnwindSafe for PatchPath
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