[][src]Enum safe_nd::NodeRewardError

pub enum NodeRewardError {
    RewardClaiming {
        account_id: AccountId,
        error: Error,
    },
    RewardPayoutInitiation {
        id: TransferId,
        account: AccountId,
        error: Error,
    },
    RewardPayoutFinalisation {
        id: TransferId,
        account: AccountId,
        error: Error,
    },
}

Variants

RewardClaiming

Fields of RewardClaiming

account_id: AccountId
error: Error
RewardPayoutInitiation

Fields of RewardPayoutInitiation

id: TransferId
account: AccountId
error: Error
RewardPayoutFinalisation

Fields of RewardPayoutFinalisation

id: TransferId
account: AccountId
error: Error

Trait Implementations

impl Clone for NodeRewardError[src]

impl Debug for NodeRewardError[src]

impl<'de> Deserialize<'de> for NodeRewardError[src]

impl Eq for NodeRewardError[src]

impl Hash for NodeRewardError[src]

impl PartialEq<NodeRewardError> for NodeRewardError[src]

impl Serialize for NodeRewardError[src]

impl StructuralEq for NodeRewardError[src]

impl StructuralPartialEq for NodeRewardError[src]

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<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Member for T where
    T: Clone + Eq + Hash
[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>,