pub struct Withdrawal {
    pub index: u64,
    pub validator_index: u64,
    pub address: Address,
    pub amount: u64,
}Expand description
Withdrawal represents a validator withdrawal from the consensus layer.
Fields§
§index: u64Monotonically increasing identifier issued by consensus layer.
validator_index: u64Index of validator associated with withdrawal.
address: AddressTarget address for withdrawn ether.
amount: u64Value of the withdrawal in gwei.
Implementations§
Source§impl Withdrawal
 
impl Withdrawal
Sourcepub fn amount_wei(&self) -> U256
 
pub fn amount_wei(&self) -> U256
Return the withdrawal amount in wei.
Trait Implementations§
Source§impl Clone for Withdrawal
 
impl Clone for Withdrawal
Source§fn clone(&self) -> Withdrawal
 
fn clone(&self) -> Withdrawal
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 moreSource§impl Debug for Withdrawal
 
impl Debug for Withdrawal
Source§impl Decodable for Withdrawal
 
impl Decodable 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 Encodable for Withdrawal
 
impl Encodable for Withdrawal
Source§impl Hash for Withdrawal
 
impl Hash for Withdrawal
Source§impl PartialEq for Withdrawal
 
impl PartialEq for Withdrawal
Source§impl Serialize for Withdrawal
 
impl Serialize for Withdrawal
impl Copy 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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more