Struct lib_ruby_parser::nodes::Args[][src]

#[repr(C)]
pub struct Args { pub args: List<Node>, pub expression_l: Loc, pub begin_l: MaybeLoc, pub end_l: MaybeLoc, }

Represents an arguments list

Args(vec![Arg("a"), Optarg("b", Int("1"))]) in def m(a, b = 1); end

Fields

args: List<Node>

List of arguments

expression_l: Loc

Location of the full expression

def m(a, b = 1, c:, &blk); end
     ~~~~~~~~~~~~~~~~~~~~
begin_l: MaybeLoc

Location of the open parenthesis

def m(a, b = 1, c:, &blk); end
     ~

None for code like def m; end or def m arg; end

end_l: MaybeLoc

Location of the closing parenthesis

def m(a, b = 1, c:, &blk); end
                        ~

None for code like def m; end or def m arg; end

Trait Implementations

impl Clone for Args[src]

impl Debug for Args[src]

impl PartialEq<Args> for Args[src]

impl StructuralPartialEq for Args[src]

Auto Trait Implementations

impl RefUnwindSafe for Args

impl Send for Args

impl Sync for Args

impl Unpin for Args

impl UnwindSafe for Args

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.