pub struct IndefiniteEvent {
pub caller: Principal,
pub operation: String,
pub details: Vec<(String, DetailValue)>,
}Fields§
§caller: PrincipalThe caller that initiated the call on the token contract.
operation: StringThe operation that took place.
details: Vec<(String, DetailValue)>Details of the transaction.
Implementations§
Trait Implementations§
Source§impl CandidType for IndefiniteEvent
impl CandidType for IndefiniteEvent
Source§impl Clone for IndefiniteEvent
impl Clone for IndefiniteEvent
Source§fn clone(&self) -> IndefiniteEvent
fn clone(&self) -> IndefiniteEvent
Returns a duplicate 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 IndefiniteEvent
impl Debug for IndefiniteEvent
Source§impl<'de> Deserialize<'de> for IndefiniteEvent
impl<'de> Deserialize<'de> for IndefiniteEvent
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<IndefiniteEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<IndefiniteEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Into<IndefiniteEvent> for Event
impl Into<IndefiniteEvent> for Event
Source§fn into(self) -> IndefiniteEvent
fn into(self) -> IndefiniteEvent
Converts this type into the (usually inferred) input type.
Source§impl Serialize for IndefiniteEvent
impl Serialize for IndefiniteEvent
Source§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
Auto Trait Implementations§
impl Freeze for IndefiniteEvent
impl RefUnwindSafe for IndefiniteEvent
impl Send for IndefiniteEvent
impl Sync for IndefiniteEvent
impl Unpin for IndefiniteEvent
impl UnwindSafe for IndefiniteEvent
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