pub struct MutableOrImmutableExpression {
pub is_mutable: Option<Node>,
pub expression: Expression,
}
Fields§
§is_mutable: Option<Node>
§expression: Expression
Trait Implementations§
Source§impl Clone for MutableOrImmutableExpression
impl Clone for MutableOrImmutableExpression
Source§fn clone(&self) -> MutableOrImmutableExpression
fn clone(&self) -> MutableOrImmutableExpression
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 MutableOrImmutableExpression
impl RefUnwindSafe for MutableOrImmutableExpression
impl Send for MutableOrImmutableExpression
impl Sync for MutableOrImmutableExpression
impl Unpin for MutableOrImmutableExpression
impl UnwindSafe for MutableOrImmutableExpression
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