pub trait AccountNameOrId: Copy {
// Required method
fn initial_lookup(self, accounts: &Accounts) -> Option<AccountId>;
}Required Methods§
fn initial_lookup(self, accounts: &Accounts) -> Option<AccountId>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".