Struct syn_solidity::ExprMember
source · pub struct ExprMember {
pub expr: Box<Expr>,
pub dot_token: Dot,
pub member: Box<Expr>,
}
Expand description
Access of a named member: obj.k
.
Fields§
§expr: Box<Expr>
§dot_token: Dot
§member: Box<Expr>
Trait Implementations§
source§impl Clone for ExprMember
impl Clone for ExprMember
source§fn clone(&self) -> ExprMember
fn clone(&self) -> ExprMember
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 ExprMember
impl Debug for ExprMember
source§impl Parse for ExprMember
impl Parse for ExprMember
fn parse(input: ParseStream<'_>) -> Result<Self>
source§impl Spanned for ExprMember
impl Spanned for ExprMember
source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty.Auto Trait Implementations§
impl RefUnwindSafe for ExprMember
impl !Send for ExprMember
impl !Sync for ExprMember
impl Unpin for ExprMember
impl UnwindSafe for ExprMember
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