pub struct ExpressionData {
pub expr: Expr,
}Expand description
Represents an expression statement’s data in the language.
Fields§
§expr: ExprTrait Implementations§
Source§impl Clone for ExpressionData
impl Clone for ExpressionData
Source§fn clone(&self) -> ExpressionData
fn clone(&self) -> ExpressionData
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 ExpressionData
impl Debug for ExpressionData
Source§impl PartialEq for ExpressionData
impl PartialEq for ExpressionData
impl StructuralPartialEq for ExpressionData
Auto Trait Implementations§
impl Freeze for ExpressionData
impl RefUnwindSafe for ExpressionData
impl Send for ExpressionData
impl Sync for ExpressionData
impl Unpin for ExpressionData
impl UnwindSafe for ExpressionData
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