Trait rbatis_sql::ops::AsProxy

source ·
pub trait AsProxy {
Show 21 methods 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 array(&self) -> Option<&Array>; 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; fn cast_u64(&self) -> u64; fn bracket(&self) -> &str; fn inner(&self) -> &str { ... }
}
Expand description

convert Value to Value

Required Methods

bracket(xxxx) inner data

Provided Methods

bracket(xxxx) inner data

Implementors