pub struct BlockStatement {
pub span: SourceSpan,
pub source_id: SourceId,
pub body: Vec<ExpressionNode>,
}
Fields§
§span: SourceSpan
§source_id: SourceId
§body: Vec<ExpressionNode>
Trait Implementations§
Source§impl Clone for BlockStatement
impl Clone for BlockStatement
Source§fn clone(&self) -> BlockStatement
fn clone(&self) -> BlockStatement
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BlockStatement
impl Debug for BlockStatement
Source§impl PartialEq for BlockStatement
impl PartialEq for BlockStatement
impl StructuralPartialEq for BlockStatement
Auto Trait Implementations§
impl Freeze for BlockStatement
impl RefUnwindSafe for BlockStatement
impl Send for BlockStatement
impl Sync for BlockStatement
impl Unpin 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