Struct scilla_parser::ast::nodes::NodeMapAccess
source · pub struct NodeMapAccess {
pub identifier_name: WithMetaData<NodeVariableIdentifier>,
}Expand description
NodeMapAccess represents a map access node in the AST It contains an identifier name
Fields§
§identifier_name: WithMetaData<NodeVariableIdentifier>The identifier name of the map access
Trait Implementations§
source§impl AstVisitor for NodeMapAccess
impl AstVisitor for NodeMapAccess
fn visit( &self, emitter: &mut dyn AstConverting ) -> Result<TraversalResult, String>
source§impl Clone for NodeMapAccess
impl Clone for NodeMapAccess
source§fn clone(&self) -> NodeMapAccess
fn clone(&self) -> NodeMapAccess
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 NodeMapAccess
impl Debug for NodeMapAccess
source§impl PartialEq for NodeMapAccess
impl PartialEq for NodeMapAccess
source§fn eq(&self, other: &NodeMapAccess) -> bool
fn eq(&self, other: &NodeMapAccess) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for NodeMapAccess
impl PartialOrd for NodeMapAccess
source§fn partial_cmp(&self, other: &NodeMapAccess) -> Option<Ordering>
fn partial_cmp(&self, other: &NodeMapAccess) -> 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 NodeMapAccess
impl StructuralEq for NodeMapAccess
impl StructuralPartialEq for NodeMapAccess
Auto Trait Implementations§
impl RefUnwindSafe for NodeMapAccess
impl Send for NodeMapAccess
impl Sync for NodeMapAccess
impl Unpin for NodeMapAccess
impl UnwindSafe for NodeMapAccess
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