Struct scilla_parser::ast::nodes::NodeComponentParameters
source · 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§fn eq(&self, other: &NodeComponentParameters) -> bool
fn eq(&self, other: &NodeComponentParameters) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for NodeComponentParameters
impl PartialOrd for NodeComponentParameters
source§fn partial_cmp(&self, other: &NodeComponentParameters) -> Option<Ordering>
fn partial_cmp(&self, other: &NodeComponentParameters) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Eq for NodeComponentParameters
impl StructuralEq for NodeComponentParameters
impl StructuralPartialEq for NodeComponentParameters
Auto Trait Implementations§
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