Skip to main content

Expr

Trait Expr 

Source
pub trait Expr: DynExpr {
    // Required method
    fn ty_hint(&self) -> &'static str;
}

Required Methods§

Source

fn ty_hint(&self) -> &'static str

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<E: DynExpr> Expr for E