Enum solana_storage_proto::convert::generated::RewardType[][src]

#[repr(i32)]pub enum RewardType {
    Unspecified,
    Fee,
    Rent,
    Staking,
    Voting,
}

Variants

Unspecified
Fee
Rent
Staking
Voting

Implementations

impl RewardType[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of RewardType.

pub fn from_i32(value: i32) -> Option<RewardType>[src]

Converts an i32 to a RewardType, or None if value is not a valid variant.

Trait Implementations

impl Clone for RewardType[src]

impl Copy for RewardType[src]

impl Debug for RewardType[src]

impl Default for RewardType[src]

impl Eq for RewardType[src]

impl Hash for RewardType[src]

impl Ord for RewardType[src]

impl PartialEq<RewardType> for RewardType[src]

impl PartialOrd<RewardType> for RewardType[src]

impl StructuralEq for RewardType[src]

impl StructuralPartialEq for RewardType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> AbiExample for T

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> CallHasher for T where
    T: Hash

impl<'a, T> Contains<'a, T> for T where
    T: 'a + Eq + Hash + Copy

type Item = &'a T

type Iter = Once<&'a T>

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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