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§impl PartialOrd for NodeMapAccess
impl PartialOrd for NodeMapAccess
impl Eq for NodeMapAccess
impl StructuralPartialEq for NodeMapAccess
Auto Trait Implementations§
impl Freeze for NodeMapAccess
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