pub struct GetCurrentEthStakingQuotaResponse {
pub left_staking_personal_quota: Option<String>,
pub left_redemption_personal_quota: Option<String>,
pub min_stake_amount: Option<String>,
pub min_redeem_amount: Option<String>,
pub redeem_period: Option<i64>,
pub stakeable: Option<bool>,
pub redeemable: Option<bool>,
pub commission_fee: Option<String>,
pub calculating: Option<bool>,
}Fields§
§left_staking_personal_quota: Option<String>§left_redemption_personal_quota: Option<String>§min_stake_amount: Option<String>§min_redeem_amount: Option<String>§redeem_period: Option<i64>§stakeable: Option<bool>§redeemable: Option<bool>§commission_fee: Option<String>§calculating: Option<bool>Implementations§
Trait Implementations§
Source§impl Clone for GetCurrentEthStakingQuotaResponse
impl Clone for GetCurrentEthStakingQuotaResponse
Source§fn clone(&self) -> GetCurrentEthStakingQuotaResponse
fn clone(&self) -> GetCurrentEthStakingQuotaResponse
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 Default for GetCurrentEthStakingQuotaResponse
impl Default for GetCurrentEthStakingQuotaResponse
Source§fn default() -> GetCurrentEthStakingQuotaResponse
fn default() -> GetCurrentEthStakingQuotaResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetCurrentEthStakingQuotaResponse
impl<'de> Deserialize<'de> for GetCurrentEthStakingQuotaResponse
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 GetCurrentEthStakingQuotaResponse
impl PartialEq for GetCurrentEthStakingQuotaResponse
Source§fn eq(&self, other: &GetCurrentEthStakingQuotaResponse) -> bool
fn eq(&self, other: &GetCurrentEthStakingQuotaResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetCurrentEthStakingQuotaResponse
Auto Trait Implementations§
impl Freeze for GetCurrentEthStakingQuotaResponse
impl RefUnwindSafe for GetCurrentEthStakingQuotaResponse
impl Send for GetCurrentEthStakingQuotaResponse
impl Sync for GetCurrentEthStakingQuotaResponse
impl Unpin for GetCurrentEthStakingQuotaResponse
impl UnsafeUnpin for GetCurrentEthStakingQuotaResponse
impl UnwindSafe for GetCurrentEthStakingQuotaResponse
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