pub struct ConvergeResponse {
pub converged: bool,
pub strategy: String,
pub intent_id: String,
pub intent_title: String,
pub commit_hash: Option<String>,
pub commits_converged: usize,
pub fast_forward: bool,
pub message: String,
pub details: Option<Value>,
}Fields§
§converged: bool§strategy: String§intent_id: String§intent_title: String§commit_hash: Option<String>§commits_converged: usize§fast_forward: bool§message: String§details: Option<Value>Trait Implementations§
Source§impl CommandResponse for ConvergeResponse
impl CommandResponse for ConvergeResponse
Source§fn command_name(&self) -> &'static str
fn command_name(&self) -> &'static str
The command name for the response envelope
Source§fn human_readable(&self) -> String
fn human_readable(&self) -> String
Render as human-readable text
Source§fn to_json_output(&self) -> String
fn to_json_output(&self) -> String
Render as JSON (default implementation via serde). Read more
Source§fn to_json_output_pretty(&self) -> String
fn to_json_output_pretty(&self) -> String
Render as indented, human-readable JSON (opt-in via
--pretty).Source§impl Debug for ConvergeResponse
impl Debug for ConvergeResponse
Source§impl<'de> Deserialize<'de> for ConvergeResponse
impl<'de> Deserialize<'de> for ConvergeResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ConvergeResponse
impl RefUnwindSafe for ConvergeResponse
impl Send for ConvergeResponse
impl Sync for ConvergeResponse
impl Unpin for ConvergeResponse
impl UnsafeUnpin for ConvergeResponse
impl UnwindSafe for ConvergeResponse
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