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