pub trait AsProxy {
    fn i32(&self) -> i32;
    fn i64(&self) -> i64;
    fn u32(&self) -> u32;
    fn u64(&self) -> u64;
    fn f64(&self) -> f64;
    fn str(&self) -> &str;
    fn string(self) -> String;
    fn bool(&self) -> bool;
    fn as_sql(&self) -> String;
}
Expand description

convert Value to Value

Required Methods

Implementations on Foreign Types

Implementors