pub struct BpmnFlow {Show 13 fields
pub workspace_id: String,
pub path: String,
pub summary: String,
pub description: String,
pub bpmn_xml: String,
pub schema: Option<Value>,
pub draft_only: Option<bool>,
pub labels: Option<Vec<String>>,
pub archived: bool,
pub edited_by: String,
pub edited_at: String,
pub extra_perms: HashMap<String, bool>,
pub version_id: Option<i32>,
}Fields§
§workspace_id: String§path: String§summary: String§description: String§bpmn_xml: String§schema: Option<Value>§draft_only: Option<bool>§labels: Option<Vec<String>>§archived: bool§edited_by: String§edited_at: String§extra_perms: HashMap<String, bool>§version_id: Option<i32>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BpmnFlow
impl<'de> Deserialize<'de> for BpmnFlow
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 BpmnFlow
Auto Trait Implementations§
impl Freeze for BpmnFlow
impl RefUnwindSafe for BpmnFlow
impl Send for BpmnFlow
impl Sync for BpmnFlow
impl Unpin for BpmnFlow
impl UnsafeUnpin for BpmnFlow
impl UnwindSafe for BpmnFlow
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