pub trait KeyIdInterface {
// Required method
fn account_id(&self) -> AccountId;
}Expand description
Provides a common API for all key identifiers.
Required Methods§
Sourcefn account_id(&self) -> AccountId
fn account_id(&self) -> AccountId
Account ID.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".