pub struct AstAssignment {
pub val: Box<Expression>,
pub var: Box<Expression>,
}Fields§
§val: Box<Expression>§var: Box<Expression>Trait Implementations§
Source§impl Clone for AstAssignment
impl Clone for AstAssignment
Source§fn clone(&self) -> AstAssignment
fn clone(&self) -> AstAssignment
Returns a duplicate 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 Debug for AstAssignment
impl Debug for AstAssignment
Source§impl<'de> Deserialize<'de> for AstAssignment
impl<'de> Deserialize<'de> for AstAssignment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AstAssignment
impl PartialEq for AstAssignment
Source§impl Serialize for AstAssignment
impl Serialize for AstAssignment
impl Eq for AstAssignment
impl StructuralPartialEq for AstAssignment
Auto Trait Implementations§
impl Freeze for AstAssignment
impl RefUnwindSafe for AstAssignment
impl Send for AstAssignment
impl Sync for AstAssignment
impl Unpin for AstAssignment
impl UnwindSafe for AstAssignment
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