pub struct ShAssignOp {
pub left: Box<ShExpr>,
pub right: Box<ShExpr>,
pub op: ShOp,
}
Fields§
§left: Box<ShExpr>
§right: Box<ShExpr>
§op: ShOp
Implementations§
Trait Implementations§
Source§impl Clone for ShAssignOp
impl Clone for ShAssignOp
Source§fn clone(&self) -> ShAssignOp
fn clone(&self) -> ShAssignOp
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 moreSource§impl Hash for ShAssignOp
impl Hash for ShAssignOp
Source§impl PartialEq for ShAssignOp
impl PartialEq for ShAssignOp
impl StructuralPartialEq for ShAssignOp
Auto Trait Implementations§
impl Freeze for ShAssignOp
impl RefUnwindSafe for ShAssignOp
impl Send for ShAssignOp
impl Sync for ShAssignOp
impl Unpin for ShAssignOp
impl UnwindSafe for ShAssignOp
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