Trait rbatis::AsProxy[][src]

pub trait AsProxy {
Show 16 methods fn i32(&self) -> i32;
fn i64(&self) -> i64;
fn f64(&self) -> f64;
fn str(&self) -> &str;
fn string(&self) -> String;
fn bool(&self) -> bool;
fn array(&self) -> Option<&Vec<Bson, Global>>;
fn object(&self) -> Option<&Document>;
fn is_empty(&self) -> bool;
fn is_null(&self) -> bool;
fn is_array(&self) -> bool;
fn is_document(&self) -> bool;
fn is_object(&self) -> bool;
fn cast_string(&self) -> String;
fn cast_i64(&self) -> i64;
fn cast_f64(&self) -> f64;
}
Expand description

convert Value to Value

Required methods

Implementations on Foreign Types

Implementors