Skip to main content

Lower

Trait Lower 

Source
pub trait Lower {
    // Required method
    fn lower(&mut self, ctx: &mut Context<'_>) -> Result<(), EvalError>;
}
Available on crate feature eval only.

Required Methods§

Source

fn lower(&mut self, ctx: &mut Context<'_>) -> Result<(), EvalError>

Dyn Compatibility§

This trait is dyn compatible.

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

Implementations on Foreign Types§

Source§

impl<T: Lower> Lower for Option<T>

Source§

fn lower(&mut self, ctx: &mut Context<'_>) -> Result<(), EvalError>

Implementors§