pub struct AssignTarget<'a> {
pub target: AssignTargetExpression<'a>,
pub whitespace_before_equal: SimpleWhitespace<'a>,
pub whitespace_after_equal: SimpleWhitespace<'a>,
}
Fields§
§target: AssignTargetExpression<'a>
§whitespace_before_equal: SimpleWhitespace<'a>
§whitespace_after_equal: SimpleWhitespace<'a>
Trait Implementations§
Source§impl<'a> Clone for AssignTarget<'a>
impl<'a> Clone for AssignTarget<'a>
Source§fn clone(&self) -> AssignTarget<'a>
fn clone(&self) -> AssignTarget<'a>
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<'a> Codegen<'a> for AssignTarget<'a>
impl<'a> Codegen<'a> for AssignTarget<'a>
fn codegen(&self, state: &mut CodegenState<'a>)
Source§impl<'a> Debug for AssignTarget<'a>
impl<'a> Debug for AssignTarget<'a>
Source§impl<'a> PartialEq for AssignTarget<'a>
impl<'a> PartialEq for AssignTarget<'a>
impl<'a> Eq for AssignTarget<'a>
impl<'a> StructuralPartialEq for AssignTarget<'a>
Auto Trait Implementations§
impl<'a> Freeze for AssignTarget<'a>
impl<'a> RefUnwindSafe for AssignTarget<'a>
impl<'a> Send for AssignTarget<'a>
impl<'a> Sync for AssignTarget<'a>
impl<'a> Unpin for AssignTarget<'a>
impl<'a> UnwindSafe for AssignTarget<'a>
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