pub struct OutputDataModelDefinition {
pub schema: Option<SchemaDefinition>,
pub as_: Option<Value>,
}Expand description
Represents the definition of an output data model
Fields§
§schema: Option<SchemaDefinition>Gets/sets the schema, if any, that defines and describes the output data of a workflow or task
as_: Option<Value>Gets/sets a runtime expression, if any, used to output specific data to the scope data
Trait Implementations§
Source§impl Clone for OutputDataModelDefinition
impl Clone for OutputDataModelDefinition
Source§fn clone(&self) -> OutputDataModelDefinition
fn clone(&self) -> OutputDataModelDefinition
Returns a duplicate 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 OutputDataModelDefinition
impl Debug for OutputDataModelDefinition
Source§impl Default for OutputDataModelDefinition
impl Default for OutputDataModelDefinition
Source§fn default() -> OutputDataModelDefinition
fn default() -> OutputDataModelDefinition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputDataModelDefinition
impl<'de> Deserialize<'de> for OutputDataModelDefinition
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
impl StructuralPartialEq for OutputDataModelDefinition
Auto Trait Implementations§
impl Freeze for OutputDataModelDefinition
impl RefUnwindSafe for OutputDataModelDefinition
impl Send for OutputDataModelDefinition
impl Sync for OutputDataModelDefinition
impl Unpin for OutputDataModelDefinition
impl UnsafeUnpin for OutputDataModelDefinition
impl UnwindSafe for OutputDataModelDefinition
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