pub trait AeonConvert {
    fn nil(self) -> bool;
    fn bool(self) -> Option<bool>;
    fn str(self) -> Option<String>;
    fn int(self) -> Option<i64>;
    fn double(self) -> Option<f64>;
    fn ip(self) -> Option<IpAddr>;
    fn ip_str(self) -> Option<String>;
    fn map(self) -> Option<HashMap<String, AeonValue>>;
    fn list(self) -> Option<Vec<AeonValue>>;
    fn get(&self, prop: &str) -> Option<AeonValue>;
    fn remove(&mut self, prop: &str) -> Option<AeonValue>;
}

Required Methods

Implementations on Foreign Types

Implementors