Trait IValue

Source
pub trait IValue<T: ?Sized> {
    // Required method
    fn to_i32(&self, ctx: &mut T) -> i32;
}

Required Methods§

Source

fn to_i32(&self, ctx: &mut T) -> i32

Implementations on Foreign Types§

Source§

impl<T: IContext> IValue<T> for &Box<Value>

Source§

fn to_i32(&self, ctx: &mut T) -> i32

Source§

impl<T: IContext, V: IValue<T>> IValue<T> for [V]

Source§

fn to_i32(&self, ctx: &mut T) -> i32

Implementors§

Source§

impl<T: IContext> IValue<T> for Value