[][src]Trait aeon::convert::AeonObjectConvert

pub trait AeonObjectConvert {
    fn get(&self, prop: &str) -> Option<AeonValue>;
fn get_path(&self, path: &str) -> Option<AeonValue>;
fn remove(&mut self, prop: &str) -> Option<AeonValue>;
fn remove_path(&mut self, path: &str) -> Option<AeonValue>; }

Required methods

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

fn get_path(&self, path: &str) -> Option<AeonValue>

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

fn remove_path(&mut self, path: &str) -> Option<AeonValue>

Loading content...

Implementors

impl AeonObjectConvert for AeonObject[src]

Loading content...