pub struct ProcessImportResult {
pub check_existence_result: Option<CheckTemplateExistenceResult>,
pub help_url: Option<String>,
pub id: Option<String>,
pub is_new: Option<bool>,
pub promote_job_id: Option<String>,
pub validation_results: Vec<ValidationIssue>,
}
Expand description
Describes the result of a Process Import request.
Fields§
§check_existence_result: Option<CheckTemplateExistenceResult>
Describes result of a check template existence request.
help_url: Option<String>
Help URL.
id: Option<String>
ID of the import operation.
is_new: Option<bool>
Whether this imported process is new.
promote_job_id: Option<String>
The promote job identifier.
validation_results: Vec<ValidationIssue>
The list of validation results.
Implementations§
Trait Implementations§
source§impl Clone for ProcessImportResult
impl Clone for ProcessImportResult
source§fn clone(&self) -> ProcessImportResult
fn clone(&self) -> ProcessImportResult
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 ProcessImportResult
impl Debug for ProcessImportResult
source§impl Default for ProcessImportResult
impl Default for ProcessImportResult
source§fn default() -> ProcessImportResult
fn default() -> ProcessImportResult
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ProcessImportResult
impl<'de> Deserialize<'de> for ProcessImportResult
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 ProcessImportResult
impl PartialEq for ProcessImportResult
source§fn eq(&self, other: &ProcessImportResult) -> bool
fn eq(&self, other: &ProcessImportResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ProcessImportResult
impl Serialize for ProcessImportResult
impl StructuralPartialEq for ProcessImportResult
Auto Trait Implementations§
impl RefUnwindSafe for ProcessImportResult
impl Send for ProcessImportResult
impl Sync for ProcessImportResult
impl Unpin for ProcessImportResult
impl UnwindSafe for ProcessImportResult
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