Struct edlang_ast::AssignStmt
source · pub struct AssignStmt {
pub name: PathExpr,
pub value: Expression,
pub deref_times: usize,
pub span: Span,
}
Fields§
§name: PathExpr
§value: Expression
§deref_times: usize
§span: Span
Trait Implementations§
source§impl Clone for AssignStmt
impl Clone for AssignStmt
source§fn clone(&self) -> AssignStmt
fn clone(&self) -> AssignStmt
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 AssignStmt
impl Debug for AssignStmt
source§impl Hash for AssignStmt
impl Hash for AssignStmt
source§impl Ord for AssignStmt
impl Ord for AssignStmt
source§fn cmp(&self, other: &AssignStmt) -> Ordering
fn cmp(&self, other: &AssignStmt) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for AssignStmt
impl PartialEq for AssignStmt
source§fn eq(&self, other: &AssignStmt) -> bool
fn eq(&self, other: &AssignStmt) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for AssignStmt
impl PartialOrd for AssignStmt
source§fn partial_cmp(&self, other: &AssignStmt) -> Option<Ordering>
fn partial_cmp(&self, other: &AssignStmt) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for AssignStmt
impl StructuralEq for AssignStmt
impl StructuralPartialEq for AssignStmt
Auto Trait Implementations§
impl RefUnwindSafe for AssignStmt
impl Send for AssignStmt
impl Sync for AssignStmt
impl Unpin for AssignStmt
impl UnwindSafe for AssignStmt
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