Struct lib_ruby_parser::nodes::Kwarg
source · [−]Expand description
Represents required keyword argument (i.e. foo
in def m(foo:); end
)
Fields
name: String
Name of the keyword argument
name_l: Loc
Location of the name
def foo(bar:); end
~~~
expression_l: Loc
Location of the full expression
def foo(bar:); end
~~~~
Trait Implementations
impl StructuralPartialEq for Kwarg
Auto Trait Implementations
impl RefUnwindSafe for Kwarg
impl Send for Kwarg
impl Sync for Kwarg
impl Unpin for Kwarg
impl UnwindSafe for Kwarg
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more