Struct zen_engine::model::DecisionTableContent
source · pub struct DecisionTableContent {
pub rules: Vec<HashMap<String, String>>,
pub inputs: Vec<DecisionTableInputField>,
pub outputs: Vec<DecisionTableOutputField>,
pub hit_policy: DecisionTableHitPolicy,
}Fields§
§rules: Vec<HashMap<String, String>>§inputs: Vec<DecisionTableInputField>§outputs: Vec<DecisionTableOutputField>§hit_policy: DecisionTableHitPolicyTrait Implementations§
source§impl Clone for DecisionTableContent
impl Clone for DecisionTableContent
source§fn clone(&self) -> DecisionTableContent
fn clone(&self) -> DecisionTableContent
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 DecisionTableContent
impl Debug for DecisionTableContent
source§impl<'de> Deserialize<'de> for DecisionTableContent
impl<'de> Deserialize<'de> for DecisionTableContent
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 DecisionTableContent
impl PartialEq for DecisionTableContent
source§fn eq(&self, other: &DecisionTableContent) -> bool
fn eq(&self, other: &DecisionTableContent) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for DecisionTableContent
impl Serialize for DecisionTableContent
impl StructuralPartialEq for DecisionTableContent
Auto Trait Implementations§
impl RefUnwindSafe for DecisionTableContent
impl Send for DecisionTableContent
impl Sync for DecisionTableContent
impl Unpin for DecisionTableContent
impl UnwindSafe for DecisionTableContent
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