#[non_exhaustive]pub struct ReleaseReadyCondition {
pub status: bool,
/* private fields */
}
Expand description
ReleaseReadyCondition contains information around the status of the Release. If a release is not ready, you cannot create a rollout with the release.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.status: bool
True if the Release is in a valid state. Otherwise at least one condition
in ReleaseCondition
is in an invalid state. Iterate over those
conditions and see which condition(s) has status = false to find out what
is wrong with the Release.
Implementations§
Trait Implementations§
Source§impl Clone for ReleaseReadyCondition
impl Clone for ReleaseReadyCondition
Source§fn clone(&self) -> ReleaseReadyCondition
fn clone(&self) -> ReleaseReadyCondition
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 ReleaseReadyCondition
impl Debug for ReleaseReadyCondition
Source§impl Default for ReleaseReadyCondition
impl Default for ReleaseReadyCondition
Source§fn default() -> ReleaseReadyCondition
fn default() -> ReleaseReadyCondition
Returns the “default value” for a type. Read more
Source§impl Message for ReleaseReadyCondition
impl Message for ReleaseReadyCondition
Source§impl PartialEq for ReleaseReadyCondition
impl PartialEq for ReleaseReadyCondition
impl StructuralPartialEq for ReleaseReadyCondition
Auto Trait Implementations§
impl Freeze for ReleaseReadyCondition
impl RefUnwindSafe for ReleaseReadyCondition
impl Send for ReleaseReadyCondition
impl Sync for ReleaseReadyCondition
impl Unpin for ReleaseReadyCondition
impl UnwindSafe for ReleaseReadyCondition
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