pub struct Erc20Transfer {
pub data_digest: [u8; 32],
pub amount: U256,
pub from: Address,
pub to: Address,
}Expand description
Erc20Transfer(bytes32,uint256,address,address)
Fields§
§data_digest: [u8; 32]§amount: U256§from: Address§to: AddressTrait Implementations§
Source§impl Clone for Erc20Transfer
impl Clone for Erc20Transfer
Source§fn clone(&self) -> Erc20Transfer
fn clone(&self) -> Erc20Transfer
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 Erc20Transfer
impl Debug for Erc20Transfer
Source§impl Default for Erc20Transfer
impl Default for Erc20Transfer
Source§fn default() -> Erc20Transfer
fn default() -> Erc20Transfer
Returns the “default value” for a type. Read more
Source§impl Hash for Erc20Transfer
impl Hash for Erc20Transfer
Source§impl PartialEq for Erc20Transfer
impl PartialEq for Erc20Transfer
impl Eq for Erc20Transfer
impl StructuralPartialEq for Erc20Transfer
Auto Trait Implementations§
impl Freeze for Erc20Transfer
impl RefUnwindSafe for Erc20Transfer
impl Send for Erc20Transfer
impl Sync for Erc20Transfer
impl Unpin for Erc20Transfer
impl UnwindSafe for Erc20Transfer
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