pub struct DeploymentDetails {
pub causes: Vec<DeploymentCause>,
pub message: Option<String>,
}
Expand description
DeploymentDetails captures information about the causes of a deployment.
Fields§
§causes: Vec<DeploymentCause>
Causes are extended data associated with all the causes for creating a new deployment
message: Option<String>
Message is the user specified change message, if this deployment was triggered manually by the user
Trait Implementations§
Source§impl Clone for DeploymentDetails
impl Clone for DeploymentDetails
Source§fn clone(&self) -> DeploymentDetails
fn clone(&self) -> DeploymentDetails
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 DeploymentDetails
impl Debug for DeploymentDetails
Source§impl Default for DeploymentDetails
impl Default for DeploymentDetails
Source§fn default() -> DeploymentDetails
fn default() -> DeploymentDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploymentDetails
impl<'de> Deserialize<'de> for DeploymentDetails
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 PartialEq for DeploymentDetails
impl PartialEq for DeploymentDetails
Source§impl Serialize for DeploymentDetails
impl Serialize for DeploymentDetails
impl StructuralPartialEq for DeploymentDetails
Auto Trait Implementations§
impl Freeze for DeploymentDetails
impl RefUnwindSafe for DeploymentDetails
impl Send for DeploymentDetails
impl Sync for DeploymentDetails
impl Unpin for DeploymentDetails
impl UnwindSafe for DeploymentDetails
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