[−][src]Struct lib_ruby_parser::nodes::Kwoptarg
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
[src]
impl Send for Kwoptarg
[src]
impl Sync for Kwoptarg
[src]
impl Unpin for Kwoptarg
[src]
impl UnwindSafe for Kwoptarg
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,