pub struct BlockStatement {
pub body: Vec<ASTNode>,
pub lines: Vec<u32>,
}Fields§
§body: Vec<ASTNode>§lines: Vec<u32>Trait Implementations§
Source§impl Clone for BlockStatement
impl Clone for BlockStatement
Source§fn clone(&self) -> BlockStatement
fn clone(&self) -> BlockStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BlockStatement
impl RefUnwindSafe for BlockStatement
impl Send for BlockStatement
impl Sync for BlockStatement
impl Unpin for BlockStatement
impl UnsafeUnpin for BlockStatement
impl UnwindSafe for BlockStatement
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