Struct ruby_prism::ForNode
source · pub struct ForNode<'pr> { /* private fields */ }
Expand description
Represents the use of the for
keyword.
for i in a end
^^^^^^^^^^^^^^
Implementations§
source§impl<'pr> ForNode<'pr>
impl<'pr> ForNode<'pr>
sourcepub fn flags(&self) -> pm_node_flags_t
pub fn flags(&self) -> pm_node_flags_t
Returns the flags of this node.
sourcepub fn collection(&self) -> Node<'pr>
pub fn collection(&self) -> Node<'pr>
Returns the collection
param
sourcepub fn statements(&self) -> Option<StatementsNode<'pr>>
pub fn statements(&self) -> Option<StatementsNode<'pr>>
Returns the statements
param
sourcepub fn for_keyword_loc(&self) -> Location<'pr>
pub fn for_keyword_loc(&self) -> Location<'pr>
Returns the for_keyword_loc
param
sourcepub fn in_keyword_loc(&self) -> Location<'pr>
pub fn in_keyword_loc(&self) -> Location<'pr>
Returns the in_keyword_loc
param
sourcepub fn do_keyword_loc(&self) -> Option<Location<'pr>>
pub fn do_keyword_loc(&self) -> Option<Location<'pr>>
Returns the do_keyword_loc
param
sourcepub fn end_keyword_loc(&self) -> Location<'pr>
pub fn end_keyword_loc(&self) -> Location<'pr>
Returns the end_keyword_loc
param
Trait Implementations§
Auto Trait Implementations§
impl<'pr> RefUnwindSafe for ForNode<'pr>
impl<'pr> !Send for ForNode<'pr>
impl<'pr> !Sync for ForNode<'pr>
impl<'pr> Unpin for ForNode<'pr>
impl<'pr> !UnwindSafe for ForNode<'pr>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more