pub struct StructuredInput {
pub name: String,
pub value: InputValue,
}Expand description
A named node input ({ name, value }).
Fields§
§name: StringThe input parameter name.
value: InputValueIts value: literal, reference, or template.
Trait Implementations§
Source§impl Clone for StructuredInput
impl Clone for StructuredInput
Source§fn clone(&self) -> StructuredInput
fn clone(&self) -> StructuredInput
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 StructuredInput
impl Debug for StructuredInput
Source§impl<'de> Deserialize<'de> for StructuredInput
impl<'de> Deserialize<'de> for StructuredInput
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 StructuredInput
impl PartialEq for StructuredInput
Source§fn eq(&self, other: &StructuredInput) -> bool
fn eq(&self, other: &StructuredInput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StructuredInput
impl Serialize for StructuredInput
impl StructuralPartialEq for StructuredInput
Auto Trait Implementations§
impl Freeze for StructuredInput
impl RefUnwindSafe for StructuredInput
impl Send for StructuredInput
impl Sync for StructuredInput
impl Unpin for StructuredInput
impl UnsafeUnpin for StructuredInput
impl UnwindSafe for StructuredInput
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