pub struct StmtAssignment {
pub lhs: Vec<Expression>,
pub rhs: Vec<Expression>,
}Expand description
l0, l1, l2 = r0, r1, r2.
variadic ... cannot be used in lhs
Fields§
§lhs: Vec<Expression>§rhs: Vec<Expression>Implementations§
source§impl StmtAssignment
impl StmtAssignment
pub fn new(lhs: Vec<Expression>, rhs: Vec<Expression>) -> Self
Trait Implementations§
source§impl Clone for StmtAssignment
impl Clone for StmtAssignment
source§fn clone(&self) -> StmtAssignment
fn clone(&self) -> StmtAssignment
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 moreAuto Trait Implementations§
impl Freeze for StmtAssignment
impl RefUnwindSafe for StmtAssignment
impl Send for StmtAssignment
impl Sync for StmtAssignment
impl Unpin for StmtAssignment
impl UnwindSafe for StmtAssignment
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)