[−][src]Struct darklua_core::nodes::BinaryExpression
Methods
impl BinaryExpression[src]
pub fn new(
operator: BinaryOperator,
left: Expression,
right: Expression
) -> Self[src]
operator: BinaryOperator,
left: Expression,
right: Expression
) -> Self
pub fn mutate_left(&mut self) -> &mut Expression[src]
pub fn mutate_right(&mut self) -> &mut Expression[src]
pub fn left(&self) -> &Expression[src]
pub fn right(&self) -> &Expression[src]
pub fn operator(&self) -> BinaryOperator[src]
Trait Implementations
impl Clone for BinaryExpression[src]
fn clone(&self) -> BinaryExpression[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for BinaryExpression[src]
impl Eq for BinaryExpression[src]
impl From<(Expression, BinaryOperator, Expression)> for BinaryExpression[src]
fn from(
(left, operator, right): (Expression, BinaryOperator, Expression)
) -> Self[src]
(left, operator, right): (Expression, BinaryOperator, Expression)
) -> Self
impl From<BinaryExpression> for Expression[src]
fn from(binary: BinaryExpression) -> Expression[src]
impl PartialEq<BinaryExpression> for BinaryExpression[src]
fn eq(&self, other: &BinaryExpression) -> bool[src]
fn ne(&self, other: &BinaryExpression) -> bool[src]
impl StructuralEq for BinaryExpression[src]
impl StructuralPartialEq for BinaryExpression[src]
impl ToLua for BinaryExpression[src]
fn to_lua(&self, generator: &mut LuaGenerator)[src]
fn to_lua_string(&self) -> String[src]
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
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,