pub struct ExpressionBlock {
pub lbrace: Symbol,
pub expression: Box<[BlockLevelNode]>,
pub rbrace: Symbol,
}
Fields§
§lbrace: Symbol
§expression: Box<[BlockLevelNode]>
§rbrace: Symbol
Trait Implementations§
Source§impl Clone for ExpressionBlock
impl Clone for ExpressionBlock
Source§fn clone(&self) -> ExpressionBlock
fn clone(&self) -> ExpressionBlock
Returns a duplicate 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 ExpressionBlock
impl Debug for ExpressionBlock
Source§impl From<ExpressionBlock> for BlockLevelNode
impl From<ExpressionBlock> for BlockLevelNode
Source§fn from(value: ExpressionBlock) -> Self
fn from(value: ExpressionBlock) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ExpressionBlock
impl PartialEq for ExpressionBlock
impl StructuralPartialEq for ExpressionBlock
Auto Trait Implementations§
impl Freeze for ExpressionBlock
impl RefUnwindSafe for ExpressionBlock
impl Send for ExpressionBlock
impl Sync for ExpressionBlock
impl Unpin for ExpressionBlock
impl UnwindSafe for ExpressionBlock
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