pub struct Node {Show 18 fields
pub id: NodeId,
pub name: Option<String>,
pub description: Option<String>,
pub env: Option<BTreeMap<String, EnvValue>>,
pub deploy: Option<Deploy>,
pub operators: Option<RuntimeNode>,
pub custom: Option<CustomNode>,
pub operator: Option<SingleOperatorDefinition>,
pub path: Option<String>,
pub git: Option<String>,
pub branch: Option<String>,
pub tag: Option<String>,
pub rev: Option<String>,
pub args: Option<String>,
pub build: Option<String>,
pub send_stdout_as: Option<String>,
pub inputs: BTreeMap<DataId, Input>,
pub outputs: BTreeSet<DataId>,
}Expand description
Dora Node
Fields§
§id: NodeIdNode identifier
name: Option<String>Node name
description: Option<String>Description of the node
env: Option<BTreeMap<String, EnvValue>>Environment variables
deploy: Option<Deploy>Unstable machine deployment configuration
operators: Option<RuntimeNode>§custom: Option<CustomNode>§operator: Option<SingleOperatorDefinition>§path: Option<String>§git: Option<String>§branch: Option<String>§tag: Option<String>§rev: Option<String>§args: Option<String>§build: Option<String>§send_stdout_as: Option<String>§inputs: BTreeMap<DataId, Input>§outputs: BTreeSet<DataId>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Node
impl<'de> Deserialize<'de> for Node
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 JsonSchema for Node
impl JsonSchema for Node
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
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