pub struct IrExpression {
pub source: String,
pub expr: Expr,
pub span: SourceSpan,
}Fields§
§source: String§expr: Expr§span: SourceSpanTrait Implementations§
Source§impl Clone for IrExpression
impl Clone for IrExpression
Source§fn clone(&self) -> IrExpression
fn clone(&self) -> IrExpression
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 moreSource§impl Debug for IrExpression
impl Debug for IrExpression
impl Eq for IrExpression
Source§impl PartialEq for IrExpression
impl PartialEq for IrExpression
impl StructuralPartialEq for IrExpression
Auto Trait Implementations§
impl Freeze for IrExpression
impl RefUnwindSafe for IrExpression
impl Send for IrExpression
impl Sync for IrExpression
impl Unpin for IrExpression
impl UnsafeUnpin for IrExpression
impl UnwindSafe for IrExpression
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