pub struct ValidatedNode {
pub runtime_id: String,
pub impl_id: String,
pub version: String,
pub kind: PrimitiveKind,
pub inputs: Vec<InputMetadata>,
pub outputs: HashMap<String, OutputMetadata>,
pub parameters: HashMap<String, ParameterValue>,
}Fields§
§runtime_id: String§impl_id: String§version: String§kind: PrimitiveKind§inputs: Vec<InputMetadata>Input metadata is used for validation only (required + type checks).
outputs: HashMap<String, OutputMetadata>§parameters: HashMap<String, ParameterValue>Implementations§
Source§impl ValidatedNode
impl ValidatedNode
pub fn required_inputs(&self) -> impl Iterator<Item = &InputMetadata>
Trait Implementations§
Source§impl Clone for ValidatedNode
impl Clone for ValidatedNode
Source§fn clone(&self) -> ValidatedNode
fn clone(&self) -> ValidatedNode
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 ValidatedNode
impl Debug for ValidatedNode
Source§impl PartialEq for ValidatedNode
impl PartialEq for ValidatedNode
Source§fn eq(&self, other: &ValidatedNode) -> bool
fn eq(&self, other: &ValidatedNode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ValidatedNode
Auto Trait Implementations§
impl Freeze for ValidatedNode
impl RefUnwindSafe for ValidatedNode
impl Send for ValidatedNode
impl Sync for ValidatedNode
impl Unpin for ValidatedNode
impl UnsafeUnpin for ValidatedNode
impl UnwindSafe for ValidatedNode
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