Skip to main content

IntoBoxedExpr

Trait IntoBoxedExpr 

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

Required Methods§

Source

fn into_boxed(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 IntoBoxedExpr for Box<dyn Expr>

Source§

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

Source§

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

Source§

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

Implementors§