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