pub struct EthStakingApiClient { /* private fields */ }Implementations§
Source§impl EthStakingApiClient
impl EthStakingApiClient
pub fn new(configuration: ConfigurationRestApi) -> Self
Trait Implementations§
Source§impl Clone for EthStakingApiClient
impl Clone for EthStakingApiClient
Source§fn clone(&self) -> EthStakingApiClient
fn clone(&self) -> EthStakingApiClient
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 EthStakingApiClient
impl Debug for EthStakingApiClient
Source§impl EthStakingApi for EthStakingApiClient
impl EthStakingApi for EthStakingApiClient
fn eth_staking_account<'life0, 'async_trait>(
&'life0 self,
params: EthStakingAccountParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<EthStakingAccountResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_current_eth_staking_quota<'life0, 'async_trait>(
&'life0 self,
params: GetCurrentEthStakingQuotaParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetCurrentEthStakingQuotaResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_eth_redemption_history<'life0, 'async_trait>(
&'life0 self,
params: GetEthRedemptionHistoryParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetEthRedemptionHistoryResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_eth_staking_history<'life0, 'async_trait>(
&'life0 self,
params: GetEthStakingHistoryParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetEthStakingHistoryResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_wbeth_rate_history<'life0, 'async_trait>(
&'life0 self,
params: GetWbethRateHistoryParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetWbethRateHistoryResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_wbeth_rewards_history<'life0, 'async_trait>(
&'life0 self,
params: GetWbethRewardsHistoryParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetWbethRewardsHistoryResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_wbeth_unwrap_history<'life0, 'async_trait>(
&'life0 self,
params: GetWbethUnwrapHistoryParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetWbethUnwrapHistoryResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_wbeth_wrap_history<'life0, 'async_trait>(
&'life0 self,
params: GetWbethWrapHistoryParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetWbethWrapHistoryResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn redeem_eth<'life0, 'async_trait>(
&'life0 self,
params: RedeemEthParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<RedeemEthResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn subscribe_eth_staking<'life0, 'async_trait>(
&'life0 self,
params: SubscribeEthStakingParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<SubscribeEthStakingResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn wrap_beth<'life0, 'async_trait>(
&'life0 self,
params: WrapBethParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<WrapBethResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl !Freeze for EthStakingApiClient
impl !RefUnwindSafe for EthStakingApiClient
impl !UnwindSafe for EthStakingApiClient
impl Send for EthStakingApiClient
impl Sync for EthStakingApiClient
impl Unpin for EthStakingApiClient
impl UnsafeUnpin for EthStakingApiClient
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