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

pub struct Args {
    pub args: Vec<Node>,
    pub expression_l: Range,
    pub begin_l: Option<Range>,
    pub end_l: Option<Range>,
}

Represents an arguments list

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

Fields

args: Vec<Node>

List of arguments

expression_l: Range

Location of the full expression

def m(a, b = 1, c:, &blk); end
     ~~~~~~~~~~~~~~~~~~~~
begin_l: Option<Range>

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: Option<Range>

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

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.