Skip to main content

AsBoxedExpr

Trait AsBoxedExpr 

Source
pub trait AsBoxedExpr {
    // Required method
    fn into_boxed_expr(self) -> Box<dyn Expr>;
}

Required Methods§

Source

fn into_boxed_expr(self) -> Box<dyn Expr>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl AsBoxedExpr for Box<dyn Expr>

Source§

impl<T: Expr + 'static> AsBoxedExpr for Box<T>

Implementors§