#[repr(C)]pub struct Postexe {
pub body: Option<Box<Node>>,
pub keyword_l: Loc,
pub begin_l: Loc,
pub end_l: Loc,
pub expression_l: Loc,
}Expand description
Represents END { .. } statement
Fields§
§body: Option<Box<Node>>Body of the block
keyword_l: LocLocation of the END keyword
END { 42 }
~~~begin_l: LocLocation of the open parenthesis
END { 42 }
~end_l: LocLocation of the closing parenthesis
END { 42 }
~expression_l: LocLocation of the full expression
END { 42 }
~~~~~~~~~~Trait Implementations§
impl StructuralPartialEq for Postexe
Auto Trait Implementations§
impl Freeze for Postexe
impl RefUnwindSafe for Postexe
impl Send for Postexe
impl Sync for Postexe
impl Unpin for Postexe
impl UnwindSafe for Postexe
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