pub struct NodeComponentParameters {
pub parameters: Vec<WithMetaData<NodeParameterPair>>,
}
Expand description
NodeComponentParameters represents a component parameters node in the AST It contains a vector of parameters
Fields§
§parameters: Vec<WithMetaData<NodeParameterPair>>
The parameters of the component
Trait Implementations§
Source§impl AstVisitor for NodeComponentParameters
impl AstVisitor for NodeComponentParameters
fn visit( &self, emitter: &mut dyn AstConverting, ) -> Result<TraversalResult, String>
Source§impl Clone for NodeComponentParameters
impl Clone for NodeComponentParameters
Source§fn clone(&self) -> NodeComponentParameters
fn clone(&self) -> NodeComponentParameters
Returns a copy 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 NodeComponentParameters
impl Debug for NodeComponentParameters
Source§impl PartialEq for NodeComponentParameters
impl PartialEq for NodeComponentParameters
Source§impl PartialOrd for NodeComponentParameters
impl PartialOrd for NodeComponentParameters
impl Eq for NodeComponentParameters
impl StructuralPartialEq for NodeComponentParameters
Auto Trait Implementations§
impl Freeze for NodeComponentParameters
impl RefUnwindSafe for NodeComponentParameters
impl Send for NodeComponentParameters
impl Sync for NodeComponentParameters
impl Unpin for NodeComponentParameters
impl UnwindSafe for NodeComponentParameters
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