pub struct ReleaseDefinitionApprovalStep {
pub release_definition_environment_step: ReleaseDefinitionEnvironmentStep,
pub approver: Option<IdentityRef>,
pub is_automated: Option<bool>,
pub is_notification_on: Option<bool>,
pub rank: Option<i32>,
}Fields§
§release_definition_environment_step: ReleaseDefinitionEnvironmentStep§approver: Option<IdentityRef>§is_automated: Option<bool>Indicates whether the approval automated.
is_notification_on: Option<bool>Indicates whether the approval notification set.
rank: Option<i32>Gets or sets the rank of approval step.
Implementations§
Trait Implementations§
Source§impl Clone for ReleaseDefinitionApprovalStep
impl Clone for ReleaseDefinitionApprovalStep
Source§fn clone(&self) -> ReleaseDefinitionApprovalStep
fn clone(&self) -> ReleaseDefinitionApprovalStep
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 Default for ReleaseDefinitionApprovalStep
impl Default for ReleaseDefinitionApprovalStep
Source§fn default() -> ReleaseDefinitionApprovalStep
fn default() -> ReleaseDefinitionApprovalStep
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseDefinitionApprovalStep
impl<'de> Deserialize<'de> for ReleaseDefinitionApprovalStep
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 ReleaseDefinitionApprovalStep
impl PartialEq for ReleaseDefinitionApprovalStep
Source§fn eq(&self, other: &ReleaseDefinitionApprovalStep) -> bool
fn eq(&self, other: &ReleaseDefinitionApprovalStep) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReleaseDefinitionApprovalStep
Auto Trait Implementations§
impl Freeze for ReleaseDefinitionApprovalStep
impl RefUnwindSafe for ReleaseDefinitionApprovalStep
impl Send for ReleaseDefinitionApprovalStep
impl Sync for ReleaseDefinitionApprovalStep
impl Unpin for ReleaseDefinitionApprovalStep
impl UnwindSafe for ReleaseDefinitionApprovalStep
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