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