Trait ExprBinaryBuilder

Source
pub trait ExprBinaryBuilder: AttrsPropsBuilder {
    // Required method
    fn new(
        left: impl IntoExpr,
        op: impl IntoBinOp,
        right: impl IntoExpr,
    ) -> Self;
}

Required Methods§

Source

fn new(left: impl IntoExpr, op: impl IntoBinOp, right: impl IntoExpr) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl ExprBinaryBuilder for ExprBinary

Source§

fn new(left: impl IntoExpr, op: impl IntoBinOp, right: impl IntoExpr) -> Self

Implementors§