pub struct FileResolverOutput {
pub merged_content: String,
pub conflicts: Vec<ResolverOutput>,
pub all_resolved: bool,
}Expand description
Output of resolving a complete file.
Fields§
§merged_content: StringThe merged file content (may contain conflict markers if not fully resolved).
conflicts: Vec<ResolverOutput>Per-conflict resolution details.
all_resolved: boolWhether all conflicts were resolved.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileResolverOutput
impl RefUnwindSafe for FileResolverOutput
impl Send for FileResolverOutput
impl Sync for FileResolverOutput
impl Unpin for FileResolverOutput
impl UnwindSafe for FileResolverOutput
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