Struct ink_env::test::DefaultAccounts[][src]

pub struct DefaultAccounts<T> where
    T: Environment
{ pub alice: T::AccountId, pub bob: T::AccountId, pub charlie: T::AccountId, pub django: T::AccountId, pub eve: T::AccountId, pub frank: T::AccountId, }

The default accounts.

Fields

alice: T::AccountId

The predefined ALICE account holding substantial amounts of value.

bob: T::AccountId

The predefined BOB account holding some amounts of value.

charlie: T::AccountId

The predefined CHARLIE account holding some amounts of value.

django: T::AccountId

The predefined DJANGO account holding no value.

eve: T::AccountId

The predefined EVE account holding no value.

frank: T::AccountId

The predefined FRANK account holding no value.

Auto Trait Implementations

impl<T> RefUnwindSafe for DefaultAccounts<T> where
    <T as Environment>::AccountId: RefUnwindSafe

impl<T> Send for DefaultAccounts<T> where
    <T as Environment>::AccountId: Send

impl<T> Sync for DefaultAccounts<T> where
    <T as Environment>::AccountId: Sync

impl<T> Unpin for DefaultAccounts<T> where
    <T as Environment>::AccountId: Unpin

impl<T> UnwindSafe for DefaultAccounts<T> where
    <T as Environment>::AccountId: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,