Enum cosmwasm_std::DistributionMsg
source · #[non_exhaustive]pub enum DistributionMsg {
SetWithdrawAddress {
address: String,
},
WithdrawDelegatorReward {
validator: String,
},
FundCommunityPool {
amount: Vec<Coin>,
},
}
Expand description
The message types of the distribution module.
See https://github.com/cosmos/cosmos-sdk/blob/v0.42.4/proto/cosmos/distribution/v1beta1/tx.proto
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
SetWithdrawAddress
This is translated to a MsgSetWithdrawAddress.
delegator_address
is automatically filled with the current contract’s address.
WithdrawDelegatorReward
This is translated to a [MsgWithdrawDelegatorReward.
delegator_address
is automatically filled with the current contract’s address.
FundCommunityPool
This is translated to a [MsgFundCommunityPool.
depositor
is automatically filled with the current contract’s address.
Trait Implementations§
source§impl Clone for DistributionMsg
impl Clone for DistributionMsg
source§fn clone(&self) -> DistributionMsg
fn clone(&self) -> DistributionMsg
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DistributionMsg
impl Debug for DistributionMsg
source§impl<'de> Deserialize<'de> for DistributionMsg
impl<'de> Deserialize<'de> for DistributionMsg
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<T> From<DistributionMsg> for CosmosMsg<T>
impl<T> From<DistributionMsg> for CosmosMsg<T>
source§fn from(msg: DistributionMsg) -> Self
fn from(msg: DistributionMsg) -> Self
Converts to this type from the input type.
source§impl JsonSchema for DistributionMsg
impl JsonSchema for DistributionMsg
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresource§impl PartialEq<DistributionMsg> for DistributionMsg
impl PartialEq<DistributionMsg> for DistributionMsg
source§fn eq(&self, other: &DistributionMsg) -> bool
fn eq(&self, other: &DistributionMsg) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for DistributionMsg
impl Serialize for DistributionMsg
impl Eq for DistributionMsg
impl StructuralEq for DistributionMsg
impl StructuralPartialEq for DistributionMsg
Auto Trait Implementations§
impl RefUnwindSafe for DistributionMsg
impl Send for DistributionMsg
impl Sync for DistributionMsg
impl Unpin for DistributionMsg
impl UnwindSafe for DistributionMsg
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more