pub struct ReconcileResponse {
pub current: DeploymentState,
pub success: bool,
}Expand description
ReconcileResponse
JSON schema
{
"type": "object",
"required": [
"current",
"success"
],
"properties": {
"current": {
"$ref": "#/components/schemas/DeploymentState"
},
"success": {
"type": "boolean"
}
}
}Fields§
§current: DeploymentState§success: boolImplementations§
Source§impl ReconcileResponse
impl ReconcileResponse
pub fn builder() -> ReconcileResponse
Trait Implementations§
Source§impl Clone for ReconcileResponse
impl Clone for ReconcileResponse
Source§fn clone(&self) -> ReconcileResponse
fn clone(&self) -> ReconcileResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 ReconcileResponse
impl Debug for ReconcileResponse
Source§impl<'de> Deserialize<'de> for ReconcileResponse
impl<'de> Deserialize<'de> for ReconcileResponse
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
Source§impl From<&ReconcileResponse> for ReconcileResponse
impl From<&ReconcileResponse> for ReconcileResponse
Source§fn from(value: &ReconcileResponse) -> Self
fn from(value: &ReconcileResponse) -> Self
Converts to this type from the input type.
Source§impl From<ReconcileResponse> for ReconcileResponse
impl From<ReconcileResponse> for ReconcileResponse
Source§fn from(value: ReconcileResponse) -> Self
fn from(value: ReconcileResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for ReconcileResponse
impl Serialize for ReconcileResponse
Source§impl TryFrom<ReconcileResponse> for ReconcileResponse
impl TryFrom<ReconcileResponse> for ReconcileResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ReconcileResponse) -> Result<Self, ConversionError>
fn try_from(value: ReconcileResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ReconcileResponse
impl RefUnwindSafe for ReconcileResponse
impl Send for ReconcileResponse
impl Sync for ReconcileResponse
impl Unpin for ReconcileResponse
impl UnsafeUnpin for ReconcileResponse
impl UnwindSafe for ReconcileResponse
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