Struct ink_env::AccountId[][src]

pub struct AccountId(_);

The default environment AccountId type.

Note

This is a mirror of the AccountId type used in the default configuration of PALLET contracts.

Trait Implementations

impl Clone for AccountId[src]

impl Copy for AccountId[src]

impl Debug for AccountId[src]

impl Decode for AccountId[src]

impl Default for AccountId[src]

impl Encode for AccountId[src]

impl EncodeLike<AccountId> for AccountId[src]

impl Eq for AccountId[src]

impl From<[u8; 32]> for AccountId[src]

impl Hash for AccountId[src]

impl Ord for AccountId[src]

impl PartialEq<AccountId> for AccountId[src]

impl PartialOrd<AccountId> for AccountId[src]

impl StructuralEq for AccountId[src]

impl StructuralPartialEq for AccountId[src]

impl<'a> TryFrom<&'a [u8]> for AccountId[src]

type Error = TryFromSliceError

The type returned in the event of a conversion error.

impl TypeInfo for AccountId[src]

type Identity = Self

The type identifying for which type info is provided. Read more

Auto Trait Implementations

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<S> Codec for S where
    S: Encode + Decode
[src]

impl<T> DecodeAll for T where
    T: Decode
[src]

impl<T> DecodeLimit for T where
    T: Decode
[src]

impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ mut T> for T where
    T: Encode
[src]

impl<T> EncodeLike<Arc<T>> for T where
    T: Encode
[src]

impl<T> EncodeLike<Box<T, Global>> for T where
    T: Encode
[src]

impl<'a, T> EncodeLike<Cow<'a, T>> for T where
    T: Encode + ToOwned
[src]

impl<T> EncodeLike<Rc<T>> for T where
    T: Encode
[src]

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

impl<S> FullCodec for S where
    S: Decode + FullEncode
[src]

impl<S> FullEncode for S where
    S: Encode + EncodeLike<S>, 
[src]

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

impl<T> KeyedVec for T where
    T: Codec
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,