pub struct AssignStatement<'ast> {
pub assignee: Assignee<'ast>,
pub assign: AssignOperation,
pub expression: Expression<'ast>,
pub line_end: LineEnd,
pub span: Span<'ast>,
}Fields§
§assignee: Assignee<'ast>§assign: AssignOperation§expression: Expression<'ast>§line_end: LineEnd§span: Span<'ast>Trait Implementations§
Source§impl<'ast> Clone for AssignStatement<'ast>
impl<'ast> Clone for AssignStatement<'ast>
Source§fn clone(&self) -> AssignStatement<'ast>
fn clone(&self) -> AssignStatement<'ast>
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<'ast> Debug for AssignStatement<'ast>
impl<'ast> Debug for AssignStatement<'ast>
Source§impl<'ast> Display for AssignStatement<'ast>
impl<'ast> Display for AssignStatement<'ast>
Source§impl<'ast> FromPest<'ast> for AssignStatement<'ast>
impl<'ast> FromPest<'ast> for AssignStatement<'ast>
Source§impl<'ast> PartialEq for AssignStatement<'ast>
impl<'ast> PartialEq for AssignStatement<'ast>
Source§impl<'ast> Serialize for AssignStatement<'ast>
impl<'ast> Serialize for AssignStatement<'ast>
impl<'ast> StructuralPartialEq for AssignStatement<'ast>
Auto Trait Implementations§
impl<'ast> Freeze for AssignStatement<'ast>
impl<'ast> RefUnwindSafe for AssignStatement<'ast>
impl<'ast> Send for AssignStatement<'ast>
impl<'ast> Sync for AssignStatement<'ast>
impl<'ast> Unpin for AssignStatement<'ast>
impl<'ast> UnwindSafe for AssignStatement<'ast>
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