EvalTypeMethods

Trait EvalTypeMethods 

Source
pub trait EvalTypeMethods: Sized {
    // Provided method
    fn register_methods<Ctx: EvalType>(
        registry: RegistryAccess<'_, Ctx, Self>,
    ) -> Result<()> { ... }
}

Provided Methods§

Source

fn register_methods<Ctx: EvalType>( registry: RegistryAccess<'_, Ctx, Self>, ) -> Result<()>

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 EvalTypeMethods for f64

Source§

impl EvalTypeMethods for i64

Source§

impl EvalTypeMethods for ()

Source§

impl EvalTypeMethods for String

Source§

impl<T1, T2> EvalTypeMethods for (T1, T2)

Source§

impl<T1, T2, T3> EvalTypeMethods for (T1, T2, T3)

Source§

impl<T1, T2, T3, T4> EvalTypeMethods for (T1, T2, T3, T4)

Source§

impl<T1, T2, T3, T4, T5> EvalTypeMethods for (T1, T2, T3, T4, T5)

Implementors§