pub struct ManualIntervention {Show 13 fields
pub approver: Option<IdentityRef>,
pub comments: Option<String>,
pub created_on: Option<OffsetDateTime>,
pub id: Option<i32>,
pub instructions: Option<String>,
pub modified_on: Option<OffsetDateTime>,
pub name: Option<String>,
pub release: Option<ReleaseShallowReference>,
pub release_definition: Option<ReleaseDefinitionShallowReference>,
pub release_environment: Option<ReleaseEnvironmentShallowReference>,
pub status: Option<Status>,
pub task_instance_id: Option<String>,
pub url: Option<String>,
}Fields§
§approver: Option<IdentityRef>§comments: Option<String>Gets or sets comments for approval.
created_on: Option<OffsetDateTime>Gets date on which it got created.
id: Option<i32>Gets the unique identifier for manual intervention.
instructions: Option<String>Gets or sets instructions for approval.
modified_on: Option<OffsetDateTime>Gets date on which it got modified.
name: Option<String>Gets or sets the name.
release: Option<ReleaseShallowReference>§release_definition: Option<ReleaseDefinitionShallowReference>§release_environment: Option<ReleaseEnvironmentShallowReference>§status: Option<Status>Gets or sets the status of the manual intervention.
task_instance_id: Option<String>Get task instance identifier.
url: Option<String>Gets url to access the manual intervention.
Implementations§
Trait Implementations§
Source§impl Clone for ManualIntervention
impl Clone for ManualIntervention
Source§fn clone(&self) -> ManualIntervention
fn clone(&self) -> ManualIntervention
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 ManualIntervention
impl Debug for ManualIntervention
Source§impl Default for ManualIntervention
impl Default for ManualIntervention
Source§fn default() -> ManualIntervention
fn default() -> ManualIntervention
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ManualIntervention
impl<'de> Deserialize<'de> for ManualIntervention
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 ManualIntervention
impl PartialEq for ManualIntervention
Source§impl Serialize for ManualIntervention
impl Serialize for ManualIntervention
impl StructuralPartialEq for ManualIntervention
Auto Trait Implementations§
impl Freeze for ManualIntervention
impl RefUnwindSafe for ManualIntervention
impl Send for ManualIntervention
impl Sync for ManualIntervention
impl Unpin for ManualIntervention
impl UnwindSafe for ManualIntervention
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