pub struct RecvEvent {
pub sender: Signer,
pub receiver: Signer,
pub denom: PrefixedDenom,
pub amount: Amount,
pub memo: Memo,
pub success: bool,
}Expand description
Event emitted by the onRecvPacket module callback to indicate the that the
RecvPacket message was processed
Fields§
§sender: Signer§receiver: Signer§denom: PrefixedDenom§amount: Amount§memo: Memo§success: boolAuto Trait Implementations§
impl Freeze for RecvEvent
impl RefUnwindSafe for RecvEvent
impl Send for RecvEvent
impl Sync for RecvEvent
impl Unpin for RecvEvent
impl UnwindSafe for RecvEvent
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