pub trait Caller<'a>: Sized {
// Required method
fn into_callers(self) -> impl Iterator<Item = &'a str>;
}Expand description
A list of names to call a command with
Required Methods§
Sourcefn into_callers(self) -> impl Iterator<Item = &'a str>
fn into_callers(self) -> impl Iterator<Item = &'a str>
An Iterator over said callers
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.