Enum server::parse::ast::DataSrc
[−]
[src]
pub enum DataSrc { Int(i64), String(String), Bool(u8), }
Variants
Int | |
String | |
Bool |
Methods
impl DataSrc
fn is_true(&self) -> bool
[−]
checks if Value is true return is true for Int when Value no null return is true for String when String is not empty return is true for Bool when Bool is not null
fn to_bool(input: u8) -> bool
[−]
static method to turn u8 into bool return is true for input when input is not null