Struct ink_env::test::ContractTerminationResult[][src]

pub struct ContractTerminationResult<E> where
    E: Environment
{ pub beneficiary: <E as Environment>::AccountId, pub transferred: <E as Environment>::Balance, }

The result of a successful contract termination.

Fields

beneficiary: <E as Environment>::AccountId

The beneficiary account who received the remaining value in the contract.

transferred: <E as Environment>::Balance

The value which was transferred to the beneficiary.

Trait Implementations

impl<E> Decode for ContractTerminationResult<E> where
    E: Environment,
    <E as Environment>::AccountId: Decode,
    <E as Environment>::AccountId: Decode,
    <E as Environment>::Balance: Decode,
    <E as Environment>::Balance: Decode
[src]

impl<E> Encode for ContractTerminationResult<E> where
    E: Environment,
    <E as Environment>::AccountId: Encode,
    <E as Environment>::AccountId: Encode,
    <E as Environment>::Balance: Encode,
    <E as Environment>::Balance: Encode
[src]

impl<E> EncodeLike<ContractTerminationResult<E>> for ContractTerminationResult<E> where
    E: Environment,
    <E as Environment>::AccountId: Encode,
    <E as Environment>::AccountId: Encode,
    <E as Environment>::Balance: Encode,
    <E as Environment>::Balance: Encode
[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for ContractTerminationResult<E> where
    <E as Environment>::AccountId: RefUnwindSafe,
    <E as Environment>::Balance: RefUnwindSafe

impl<E> Send for ContractTerminationResult<E> where
    <E as Environment>::AccountId: Send,
    <E as Environment>::Balance: Send

impl<E> Sync for ContractTerminationResult<E> where
    <E as Environment>::AccountId: Sync,
    <E as Environment>::Balance: Sync

impl<E> Unpin for ContractTerminationResult<E> where
    <E as Environment>::AccountId: Unpin,
    <E as Environment>::Balance: Unpin

impl<E> UnwindSafe for ContractTerminationResult<E> where
    <E as Environment>::AccountId: UnwindSafe,
    <E as Environment>::Balance: 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<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<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, 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>,