pub struct SolStakingAccountParams {
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [sol_staking_account] operation.
This struct holds all of the inputs you can pass when calling
sol_staking_account.
Fields§
§recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl SolStakingAccountParams
impl SolStakingAccountParams
Sourcepub fn builder() -> SolStakingAccountParamsBuilder
pub fn builder() -> SolStakingAccountParamsBuilder
Create a builder for [sol_staking_account].
Trait Implementations§
Source§impl Clone for SolStakingAccountParams
impl Clone for SolStakingAccountParams
Source§fn clone(&self) -> SolStakingAccountParams
fn clone(&self) -> SolStakingAccountParams
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 SolStakingAccountParams
impl Debug for SolStakingAccountParams
Source§impl Default for SolStakingAccountParams
impl Default for SolStakingAccountParams
Source§fn default() -> SolStakingAccountParams
fn default() -> SolStakingAccountParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SolStakingAccountParams
impl RefUnwindSafe for SolStakingAccountParams
impl Send for SolStakingAccountParams
impl Sync for SolStakingAccountParams
impl Unpin for SolStakingAccountParams
impl UnsafeUnpin for SolStakingAccountParams
impl UnwindSafe for SolStakingAccountParams
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