pub struct AssignStat {
pub left: Vec<Assignable>,
pub right: Vec<Expr>,
}
Fields§
§left: Vec<Assignable>
§right: Vec<Expr>
Trait Implementations§
Source§impl Clone for AssignStat
impl Clone for AssignStat
Source§fn clone(&self) -> AssignStat
fn clone(&self) -> AssignStat
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AssignStat
impl Debug for AssignStat
Source§impl PartialEq for AssignStat
impl PartialEq for AssignStat
impl StructuralPartialEq for AssignStat
Auto Trait Implementations§
impl Freeze for AssignStat
impl RefUnwindSafe for AssignStat
impl Send for AssignStat
impl Sync for AssignStat
impl Unpin for AssignStat
impl UnwindSafe for AssignStat
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