pub struct Assign {
pub targets: Vec<Expression>,
pub values: Vec<Expression>,
pub span: Span,
}Expand description
Simple or multi-target assignment: targets = values.
Fields§
§targets: Vec<Expression>§values: Vec<Expression>§span: SpanTrait Implementations§
Auto Trait Implementations§
impl Freeze for Assign
impl RefUnwindSafe for Assign
impl Send for Assign
impl Sync for Assign
impl Unpin for Assign
impl UnsafeUnpin for Assign
impl UnwindSafe for Assign
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