pub trait GetCallName {
    // Required methods
    fn get_call_names() -> &'static [&'static str];
    fn get_call_name(&self) -> &'static str;
}
Expand description

Gets the function name of the Call.

Required Methods§

source

fn get_call_names() -> &'static [&'static str]

Return all function names in the same order as GetCallIndex.

source

fn get_call_name(&self) -> &'static str

Return the function name of the Call.

Implementors§