pub trait ArgAll {
    type strs;

    fn strs_sig<F: FnMut(&'static str, Signature<'static>)>(a: Self::strs, f: F);
}
Expand description

Helper trait to introspect many arguments.

Required Associated Types

A tuple of &static str. Used for introspection.

Required Methods

Enumerates all arguments with their signatures (introspection helper method).

Implementations on Foreign Types

Implementors