pub struct MergeResult {
pub content: String,
pub record: MergeRecord,
pub changed: bool,
}Expand description
Result of a merge operation
Fields§
§content: StringThe merged JSON content
record: MergeRecordRecord of what was merged (for metadata tracking)
changed: boolWhether any actual changes were made
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MergeResult
impl RefUnwindSafe for MergeResult
impl Send for MergeResult
impl Sync for MergeResult
impl Unpin for MergeResult
impl UnwindSafe for MergeResult
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