Enum diem_client::views::EventDataView
pub enum EventDataView {
Show 17 variants
Burn {
amount: AmountView,
preburn_address: AccountAddress,
},
CancelBurn {
amount: AmountView,
preburn_address: AccountAddress,
},
Mint {
amount: AmountView,
},
ToXDXExchangeRateUpdate {
currency_code: String,
new_to_xdx_exchange_rate: f32,
},
Preburn {
amount: AmountView,
preburn_address: AccountAddress,
},
ReceivedPayment {
amount: AmountView,
sender: AccountAddress,
receiver: AccountAddress,
metadata: BytesView,
},
SentPayment {
amount: AmountView,
receiver: AccountAddress,
sender: AccountAddress,
metadata: BytesView,
},
AdminTransaction {
committed_timestamp_secs: u64,
},
NewEpoch {
epoch: u64,
},
NewBlock {
round: u64,
proposer: AccountAddress,
proposed_time: u64,
},
ReceivedMint {
amount: AmountView,
destination_address: AccountAddress,
},
ComplianceKeyRotation {
new_compliance_public_key: BytesView,
time_rotated_seconds: u64,
},
BaseUrlRotation {
new_base_url: String,
time_rotated_seconds: u64,
},
CreateAccount {
created_address: AccountAddress,
role_id: u64,
},
VASPDomain {
removed: bool,
domain: DiemIdVaspDomainIdentifier,
address: AccountAddress,
},
Unknown {
bytes: Option<BytesView>,
},
UnknownToClient,
}
Variants§
Burn
CancelBurn
Mint
Fields
§
amount: AmountView
ToXDXExchangeRateUpdate
Preburn
ReceivedPayment
SentPayment
AdminTransaction
NewEpoch
NewBlock
ReceivedMint
ComplianceKeyRotation
BaseUrlRotation
CreateAccount
VASPDomain
Unknown
UnknownToClient
Trait Implementations§
§impl Clone for EventDataView
impl Clone for EventDataView
§fn clone(&self) -> EventDataView
fn clone(&self) -> EventDataView
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 more§impl Debug for EventDataView
impl Debug for EventDataView
§impl<'de> Deserialize<'de> for EventDataView
impl<'de> Deserialize<'de> for EventDataView
§fn deserialize<__D>(
__deserializer: __D
) -> Result<EventDataView, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<EventDataView, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq<EventDataView> for EventDataView
impl PartialEq<EventDataView> for EventDataView
§fn eq(&self, other: &EventDataView) -> bool
fn eq(&self, other: &EventDataView) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for EventDataView
impl Serialize for EventDataView
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
§impl TryFrom<ContractEvent> for EventDataView
impl TryFrom<ContractEvent> for EventDataView
impl StructuralPartialEq for EventDataView
Auto Trait Implementations§
impl RefUnwindSafe for EventDataView
impl Send for EventDataView
impl Sync for EventDataView
impl Unpin for EventDataView
impl UnwindSafe for EventDataView
Blanket Implementations§
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> TestOnlyHash for Twhere
T: Serialize + ?Sized,
impl<T> TestOnlyHash for Twhere T: Serialize + ?Sized,
§fn test_only_hash(&self) -> HashValue
fn test_only_hash(&self) -> HashValue
Generates a hash used only for tests.