[][src]Trait sp_runtime::traits::IdentifyAccount

pub trait IdentifyAccount {
    type AccountId;
    fn into_account(self) -> Self::AccountId;
}
[]

Some type that is able to be collapsed into an account ID. It is not possible to recreate the original value from the account ID.

Associated Types

type AccountId[]

The account ID that this can be transformed into.

Required methods

fn into_account(self) -> Self::AccountId[]

Transform into an account.

Implementations on Foreign Types

impl IdentifyAccount for Public[src][]

type AccountId = Self

impl IdentifyAccount for Public[src][]

type AccountId = Self

Implementors

impl IdentifyAccount for MultiSigner[src][+]

impl IdentifyAccount for sp_runtime::testing::sr25519::Public[src][+]

impl IdentifyAccount for UintAuthorityId[src][+]