pub struct ReleaseApprovalPendingEvent {Show 14 fields
pub approval: Option<ReleaseApproval>,
pub approval_options: Option<ApprovalOptions>,
pub completed_approvals: Vec<ReleaseApproval>,
pub definition_name: Option<String>,
pub deployment: Option<Deployment>,
pub environment_id: Option<i32>,
pub environment_name: Option<String>,
pub environments: Vec<ReleaseEnvironment>,
pub is_multiple_rank_approval: Option<bool>,
pub pending_approvals: Vec<ReleaseApproval>,
pub release_creator: Option<String>,
pub release_name: Option<String>,
pub title: Option<String>,
pub web_access_uri: Option<String>,
}Fields§
§approval: Option<ReleaseApproval>§approval_options: Option<ApprovalOptions>§completed_approvals: Vec<ReleaseApproval>§definition_name: Option<String>§deployment: Option<Deployment>§environment_id: Option<i32>§environment_name: Option<String>§environments: Vec<ReleaseEnvironment>§is_multiple_rank_approval: Option<bool>§pending_approvals: Vec<ReleaseApproval>§release_creator: Option<String>§release_name: Option<String>§title: Option<String>§web_access_uri: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ReleaseApprovalPendingEvent
impl Clone for ReleaseApprovalPendingEvent
Source§fn clone(&self) -> ReleaseApprovalPendingEvent
fn clone(&self) -> ReleaseApprovalPendingEvent
Returns a copy 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 ReleaseApprovalPendingEvent
impl Debug for ReleaseApprovalPendingEvent
Source§impl Default for ReleaseApprovalPendingEvent
impl Default for ReleaseApprovalPendingEvent
Source§fn default() -> ReleaseApprovalPendingEvent
fn default() -> ReleaseApprovalPendingEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseApprovalPendingEvent
impl<'de> Deserialize<'de> for ReleaseApprovalPendingEvent
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
impl StructuralPartialEq for ReleaseApprovalPendingEvent
Auto Trait Implementations§
impl Freeze for ReleaseApprovalPendingEvent
impl RefUnwindSafe for ReleaseApprovalPendingEvent
impl Send for ReleaseApprovalPendingEvent
impl Sync for ReleaseApprovalPendingEvent
impl Unpin for ReleaseApprovalPendingEvent
impl UnwindSafe for ReleaseApprovalPendingEvent
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