pub struct InputDataModelDefinition {
pub schema: Option<SchemaDefinition>,
pub from: Option<Value>,
}Expand description
Represents the definition of an input data model
Fields§
§schema: Option<SchemaDefinition>Gets/sets the schema, if any, that defines and describes the input data of a workflow or task
from: Option<Value>Gets/sets a runtime expression, if any, used to build the workflow or task input data based on both input and scope data
Trait Implementations§
Source§impl Clone for InputDataModelDefinition
impl Clone for InputDataModelDefinition
Source§fn clone(&self) -> InputDataModelDefinition
fn clone(&self) -> InputDataModelDefinition
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 InputDataModelDefinition
impl Debug for InputDataModelDefinition
Source§impl Default for InputDataModelDefinition
impl Default for InputDataModelDefinition
Source§fn default() -> InputDataModelDefinition
fn default() -> InputDataModelDefinition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InputDataModelDefinition
impl<'de> Deserialize<'de> for InputDataModelDefinition
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 InputDataModelDefinition
impl PartialEq for InputDataModelDefinition
Source§fn eq(&self, other: &InputDataModelDefinition) -> bool
fn eq(&self, other: &InputDataModelDefinition) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InputDataModelDefinition
impl Serialize for InputDataModelDefinition
impl StructuralPartialEq for InputDataModelDefinition
Auto Trait Implementations§
impl Freeze for InputDataModelDefinition
impl RefUnwindSafe for InputDataModelDefinition
impl Send for InputDataModelDefinition
impl Sync for InputDataModelDefinition
impl Unpin for InputDataModelDefinition
impl UnsafeUnpin for InputDataModelDefinition
impl UnwindSafe for InputDataModelDefinition
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