pub struct PromotionReadinessV1 {
pub schema_version: u32,
pub readiness_id: String,
pub promotion_readiness_digest: String,
pub target_plan_id: String,
pub status: PromotionReadinessStatusV1,
pub roles: Vec<RolePromotionReadinessV1>,
pub blockers: Vec<SafetyFindingV1>,
pub warnings: Vec<SafetyFindingV1>,
}Expand description
PromotionReadinessV1
Fields§
§schema_version: u32§readiness_id: String§promotion_readiness_digest: String§target_plan_id: String§status: PromotionReadinessStatusV1§roles: Vec<RolePromotionReadinessV1>§blockers: Vec<SafetyFindingV1>§warnings: Vec<SafetyFindingV1>Trait Implementations§
Source§impl Clone for PromotionReadinessV1
impl Clone for PromotionReadinessV1
Source§fn clone(&self) -> PromotionReadinessV1
fn clone(&self) -> PromotionReadinessV1
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 PromotionReadinessV1
impl Debug for PromotionReadinessV1
Source§impl<'de> Deserialize<'de> for PromotionReadinessV1
impl<'de> Deserialize<'de> for PromotionReadinessV1
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 PromotionReadinessV1
impl PartialEq for PromotionReadinessV1
Source§fn eq(&self, other: &PromotionReadinessV1) -> bool
fn eq(&self, other: &PromotionReadinessV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PromotionReadinessV1
impl Serialize for PromotionReadinessV1
impl Eq for PromotionReadinessV1
impl StructuralPartialEq for PromotionReadinessV1
Auto Trait Implementations§
impl Freeze for PromotionReadinessV1
impl RefUnwindSafe for PromotionReadinessV1
impl Send for PromotionReadinessV1
impl Sync for PromotionReadinessV1
impl Unpin for PromotionReadinessV1
impl UnsafeUnpin for PromotionReadinessV1
impl UnwindSafe for PromotionReadinessV1
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