pub struct PrimitiveMetadata {
pub kind: PrimitiveKind,
pub inputs: Vec<InputMetadata>,
pub outputs: HashMap<String, OutputMetadata>,
pub parameters: Vec<ParameterMetadata>,
}Fields§
§kind: PrimitiveKind§inputs: Vec<InputMetadata>§outputs: HashMap<String, OutputMetadata>§parameters: Vec<ParameterMetadata>A.1: Parameter specs with defaults for expansion-time resolution.
Trait Implementations§
Source§impl Clone for PrimitiveMetadata
impl Clone for PrimitiveMetadata
Source§fn clone(&self) -> PrimitiveMetadata
fn clone(&self) -> PrimitiveMetadata
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 PrimitiveMetadata
impl Debug for PrimitiveMetadata
Source§impl PartialEq for PrimitiveMetadata
impl PartialEq for PrimitiveMetadata
Source§fn eq(&self, other: &PrimitiveMetadata) -> bool
fn eq(&self, other: &PrimitiveMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrimitiveMetadata
Auto Trait Implementations§
impl Freeze for PrimitiveMetadata
impl RefUnwindSafe for PrimitiveMetadata
impl Send for PrimitiveMetadata
impl Sync for PrimitiveMetadata
impl Unpin for PrimitiveMetadata
impl UnsafeUnpin for PrimitiveMetadata
impl UnwindSafe for PrimitiveMetadata
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