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