Struct symboscript_types::parser::AssignmentExpression
source · pub struct AssignmentExpression {
pub node: Node,
pub assignment: TokenKind,
pub left: Expression,
pub right: Expression,
}Fields§
§node: Node§assignment: TokenKind§left: Expression§right: ExpressionTrait Implementations§
source§impl Clone for AssignmentExpression
impl Clone for AssignmentExpression
source§fn clone(&self) -> AssignmentExpression
fn clone(&self) -> AssignmentExpression
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 Debug for AssignmentExpression
impl Debug for AssignmentExpression
source§impl<'de> Deserialize<'de> for AssignmentExpression
impl<'de> Deserialize<'de> for AssignmentExpression
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 Display for AssignmentExpression
impl Display for AssignmentExpression
Auto Trait Implementations§
impl RefUnwindSafe for AssignmentExpression
impl Send for AssignmentExpression
impl Sync for AssignmentExpression
impl Unpin for AssignmentExpression
impl UnwindSafe for AssignmentExpression
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