pub struct ResolveReport {
pub output_kind: String,
pub message: Option<String>,
pub resolved: Vec<String>,
pub remaining: Vec<String>,
pub conflict_paths: Vec<String>,
pub conflicts: Vec<ConflictRegionReport>,
pub resolutions: Vec<ConflictResolutionReport>,
pub continued: bool,
pub continuation_status: Option<String>,
pub continuation_message: Option<String>,
pub next_action: Option<String>,
pub recommended_action: Option<String>,
}Fields§
§output_kind: String§message: Option<String>§resolved: Vec<String>§remaining: Vec<String>§conflict_paths: Vec<String>Path-level compatibility/progress surface, including structural conflicts.
conflicts: Vec<ConflictRegionReport>Content conflicts expanded into independently addressable regions.
resolutions: Vec<ConflictResolutionReport>Resolution operations produced by this command invocation.
continued: bool§continuation_status: Option<String>§continuation_message: Option<String>§next_action: Option<String>§recommended_action: Option<String>Implementations§
Source§impl ResolveReport
impl ResolveReport
pub const CONTRACT: ReportContract
Trait Implementations§
Source§impl Clone for ResolveReport
impl Clone for ResolveReport
Source§fn clone(&self) -> ResolveReport
fn clone(&self) -> ResolveReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ResolveReport
impl Debug for ResolveReport
Source§impl HeddleReport for ResolveReport
impl HeddleReport for ResolveReport
const CONTRACT: ReportContract = Self::CONTRACT
Source§impl JsonSchema for ResolveReport
impl JsonSchema for ResolveReport
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ResolveReport
impl RefUnwindSafe for ResolveReport
impl Send for ResolveReport
impl Sync for ResolveReport
impl Unpin for ResolveReport
impl UnsafeUnpin for ResolveReport
impl UnwindSafe for ResolveReport
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