logo
pub trait ArgDict {
    fn get_int(&self, key: &str) -> CallResult<Option<i64>>;
    fn get_string<'a>(&'a self, key: &str) -> CallResult<Option<&'a str>>;
}
Expand description

Defines Argument Dictionary functonality

Required Methods

Retrieve value as i64 by key

Retrieve value as i64 by key

Implementors