pub struct EthStakingAccountResponse {
pub holding_in_eth: Option<String>,
pub holdings: Option<Box<EthStakingAccountResponseHoldings>>,
pub thirty_days_profit_in_eth: Option<String>,
pub profit: Option<Box<EthStakingAccountResponseProfit>>,
}Fields§
§holding_in_eth: Option<String>§holdings: Option<Box<EthStakingAccountResponseHoldings>>§thirty_days_profit_in_eth: Option<String>§profit: Option<Box<EthStakingAccountResponseProfit>>Implementations§
Source§impl EthStakingAccountResponse
impl EthStakingAccountResponse
pub fn new() -> EthStakingAccountResponse
Trait Implementations§
Source§impl Clone for EthStakingAccountResponse
impl Clone for EthStakingAccountResponse
Source§fn clone(&self) -> EthStakingAccountResponse
fn clone(&self) -> EthStakingAccountResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EthStakingAccountResponse
impl Debug for EthStakingAccountResponse
Source§impl Default for EthStakingAccountResponse
impl Default for EthStakingAccountResponse
Source§fn default() -> EthStakingAccountResponse
fn default() -> EthStakingAccountResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EthStakingAccountResponse
impl<'de> Deserialize<'de> for EthStakingAccountResponse
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 EthStakingAccountResponse
impl PartialEq for EthStakingAccountResponse
Source§fn eq(&self, other: &EthStakingAccountResponse) -> bool
fn eq(&self, other: &EthStakingAccountResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EthStakingAccountResponse
Auto Trait Implementations§
impl Freeze for EthStakingAccountResponse
impl RefUnwindSafe for EthStakingAccountResponse
impl Send for EthStakingAccountResponse
impl Sync for EthStakingAccountResponse
impl Unpin for EthStakingAccountResponse
impl UnsafeUnpin for EthStakingAccountResponse
impl UnwindSafe for EthStakingAccountResponse
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