pub struct DmnDecisionVersion {
pub id: i32,
pub workspace_id: String,
pub path: String,
pub value: Option<String>,
pub created_by: String,
pub created_at: String,
}Fields§
§id: i32§workspace_id: String§path: String§value: Option<String>The DMN 1.3 XML at this version
created_by: String§created_at: StringImplementations§
Trait Implementations§
Source§impl Clone for DmnDecisionVersion
impl Clone for DmnDecisionVersion
Source§fn clone(&self) -> DmnDecisionVersion
fn clone(&self) -> DmnDecisionVersion
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 DmnDecisionVersion
impl Debug for DmnDecisionVersion
Source§impl Default for DmnDecisionVersion
impl Default for DmnDecisionVersion
Source§fn default() -> DmnDecisionVersion
fn default() -> DmnDecisionVersion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DmnDecisionVersion
impl<'de> Deserialize<'de> for DmnDecisionVersion
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 DmnDecisionVersion
impl PartialEq for DmnDecisionVersion
Source§impl Serialize for DmnDecisionVersion
impl Serialize for DmnDecisionVersion
impl StructuralPartialEq for DmnDecisionVersion
Auto Trait Implementations§
impl Freeze for DmnDecisionVersion
impl RefUnwindSafe for DmnDecisionVersion
impl Send for DmnDecisionVersion
impl Sync for DmnDecisionVersion
impl Unpin for DmnDecisionVersion
impl UnsafeUnpin for DmnDecisionVersion
impl UnwindSafe for DmnDecisionVersion
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