pub struct ProcessModel {
pub description: Option<String>,
pub name: Option<String>,
pub projects: Vec<ProjectReference>,
pub properties: Option<ProcessProperties>,
pub reference_name: Option<String>,
pub type_id: Option<String>,
}Fields§
§description: Option<String>Description of the process
name: Option<String>Name of the process
projects: Vec<ProjectReference>Projects in this process
properties: Option<ProcessProperties>Properties of the process.
reference_name: Option<String>Reference name of the process
type_id: Option<String>The ID of the process
Implementations§
Source§impl ProcessModel
impl ProcessModel
Trait Implementations§
Source§impl Clone for ProcessModel
impl Clone for ProcessModel
Source§fn clone(&self) -> ProcessModel
fn clone(&self) -> ProcessModel
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 ProcessModel
impl Debug for ProcessModel
Source§impl Default for ProcessModel
impl Default for ProcessModel
Source§fn default() -> ProcessModel
fn default() -> ProcessModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcessModel
impl<'de> Deserialize<'de> for ProcessModel
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 ProcessModel
impl PartialEq for ProcessModel
Source§impl Serialize for ProcessModel
impl Serialize for ProcessModel
impl StructuralPartialEq for ProcessModel
Auto Trait Implementations§
impl Freeze for ProcessModel
impl RefUnwindSafe for ProcessModel
impl Send for ProcessModel
impl Sync for ProcessModel
impl Unpin for ProcessModel
impl UnwindSafe for ProcessModel
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