[][src]Struct lib_ruby_parser::nodes::Kwoptarg

pub struct Kwoptarg {
    pub name: String,
    pub default: Box<Node>,
    pub name_l: Range,
    pub expression_l: Range,
}

Represents an optional keyword argument (i.e. foo in def m(foo: 42); end)

Fields

name: String

Name of the optional keyword argument

default: Box<Node>

Default value of the optional keyword argument

name_l: Range

Location of the argument name

def m(foo: 1); end
      ~~~
expression_l: Range

Location of the argument name

def m(foo: 1); end
      ~~~~~~

Trait Implementations

impl Clone for Kwoptarg[src]

impl Debug for Kwoptarg[src]

impl PartialEq<Kwoptarg> for Kwoptarg[src]

impl StructuralPartialEq for Kwoptarg[src]

Auto Trait Implementations

impl !RefUnwindSafe for Kwoptarg

impl !Send for Kwoptarg

impl !Sync for Kwoptarg

impl Unpin for Kwoptarg

impl UnwindSafe for Kwoptarg

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.