pub struct BpmnDeployResult {
pub path: String,
pub warnings: Vec<BpmnValidationIssue>,
}Expand description
BpmnDeployResult : The result of a successful BPMN deploy. warnings is empty on a clean deploy; a non-empty list does not mean the deploy failed.
Fields§
§path: String§warnings: Vec<BpmnValidationIssue>Implementations§
Source§impl BpmnDeployResult
impl BpmnDeployResult
Sourcepub fn new(path: String, warnings: Vec<BpmnValidationIssue>) -> BpmnDeployResult
pub fn new(path: String, warnings: Vec<BpmnValidationIssue>) -> BpmnDeployResult
The result of a successful BPMN deploy. warnings is empty on a clean deploy; a non-empty list does not mean the deploy failed.
Trait Implementations§
Source§impl Clone for BpmnDeployResult
impl Clone for BpmnDeployResult
Source§fn clone(&self) -> BpmnDeployResult
fn clone(&self) -> BpmnDeployResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BpmnDeployResult
impl Debug for BpmnDeployResult
Source§impl Default for BpmnDeployResult
impl Default for BpmnDeployResult
Source§fn default() -> BpmnDeployResult
fn default() -> BpmnDeployResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BpmnDeployResult
impl<'de> Deserialize<'de> for BpmnDeployResult
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 BpmnDeployResult
impl PartialEq for BpmnDeployResult
Source§impl Serialize for BpmnDeployResult
impl Serialize for BpmnDeployResult
impl StructuralPartialEq for BpmnDeployResult
Auto Trait Implementations§
impl Freeze for BpmnDeployResult
impl RefUnwindSafe for BpmnDeployResult
impl Send for BpmnDeployResult
impl Sync for BpmnDeployResult
impl Unpin for BpmnDeployResult
impl UnsafeUnpin for BpmnDeployResult
impl UnwindSafe for BpmnDeployResult
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