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§
Sourcefn get_call_names() -> &'static [&'static str]
fn get_call_names() -> &'static [&'static str]
Return all function names in the same order as GetCallIndex
.
Sourcefn get_call_name(&self) -> &'static str
fn get_call_name(&self) -> &'static str
Return the function name of the Call.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.