pub struct Withdrawal {
pub index: Option<Quantity>,
pub validator_index: Option<Quantity>,
pub address: Option<Address>,
pub amount: Option<Quantity>,
}Expand description
Evm withdrawal object
See ethereum rpc spec for the meaning of fields
Fields§
§index: Option<Quantity>§validator_index: Option<Quantity>§address: Option<Address>§amount: Option<Quantity>Trait Implementations§
Source§impl Clone for Withdrawal
impl Clone for Withdrawal
Source§fn clone(&self) -> Withdrawal
fn clone(&self) -> Withdrawal
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 Withdrawal
impl Debug for Withdrawal
Source§impl Default for Withdrawal
impl Default for Withdrawal
Source§fn default() -> Withdrawal
fn default() -> Withdrawal
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Withdrawal
impl<'de> Deserialize<'de> for Withdrawal
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 PartialEq for Withdrawal
impl PartialEq for Withdrawal
Source§impl Serialize for Withdrawal
impl Serialize for Withdrawal
impl Eq for Withdrawal
impl StructuralPartialEq for Withdrawal
Auto Trait Implementations§
impl Freeze for Withdrawal
impl RefUnwindSafe for Withdrawal
impl Send for Withdrawal
impl Sync for Withdrawal
impl Unpin for Withdrawal
impl UnwindSafe for Withdrawal
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