pub struct DmnDecision {
pub workspace_id: String,
pub path: String,
pub summary: String,
pub description: String,
pub value: String,
pub edited_by: String,
pub edited_at: String,
pub archived: bool,
pub extra_perms: HashMap<String, bool>,
pub draft_only: Option<bool>,
pub labels: Option<Vec<String>>,
pub versions: Vec<i32>,
}Fields§
§workspace_id: String§path: String§summary: String§description: String§value: StringThe DMN 1.3 XML
edited_by: String§edited_at: String§archived: bool§extra_perms: HashMap<String, bool>§draft_only: Option<bool>§labels: Option<Vec<String>>§versions: Vec<i32>Implementations§
Trait Implementations§
Source§impl Clone for DmnDecision
impl Clone for DmnDecision
Source§fn clone(&self) -> DmnDecision
fn clone(&self) -> DmnDecision
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 DmnDecision
impl Debug for DmnDecision
Source§impl Default for DmnDecision
impl Default for DmnDecision
Source§fn default() -> DmnDecision
fn default() -> DmnDecision
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DmnDecision
impl<'de> Deserialize<'de> for DmnDecision
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 DmnDecision
impl PartialEq for DmnDecision
Source§impl Serialize for DmnDecision
impl Serialize for DmnDecision
impl StructuralPartialEq for DmnDecision
Auto Trait Implementations§
impl Freeze for DmnDecision
impl RefUnwindSafe for DmnDecision
impl Send for DmnDecision
impl Sync for DmnDecision
impl Unpin for DmnDecision
impl UnsafeUnpin for DmnDecision
impl UnwindSafe for DmnDecision
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