Trait snekdown::elements::Metadata[][src]

pub trait Metadata {
    fn get_bool(&self, key: &str) -> bool;
fn get_string(&self, key: &str) -> Option<String>;
fn get_float(&self, key: &str) -> Option<f64>;
fn get_integer(&self, key: &str) -> Option<i64>;
fn get_string_map(&self) -> HashMap<String, String>; }

Required methods

fn get_bool(&self, key: &str) -> bool[src]

fn get_string(&self, key: &str) -> Option<String>[src]

fn get_float(&self, key: &str) -> Option<f64>[src]

fn get_integer(&self, key: &str) -> Option<i64>[src]

fn get_string_map(&self) -> HashMap<String, String>[src]

Loading content...

Implementors

impl Metadata for InlineMetadata[src]

Loading content...