[][src]Trait aeon::convert_panic::AeonConvert

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

Required methods

fn nil(self) -> bool

fn bool(self) -> bool

fn str(self) -> String

fn int(self) -> i64

fn double(self) -> f64

fn map(self) -> HashMap<String, AeonValue>

fn list(self) -> Vec<AeonValue>

fn get(&self, prop: &str) -> AeonValue

fn remove(&mut self, prop: &str) -> AeonValue

Loading content...

Implementors

impl AeonConvert for AeonValue[src]

Loading content...