pub struct EnableOptionsForSubAccountParams {
pub email: String,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [enable_options_for_sub_account] operation.
This struct holds all of the inputs you can pass when calling
enable_options_for_sub_account.
Fields§
§email: StringThis field is **required.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl EnableOptionsForSubAccountParams
impl EnableOptionsForSubAccountParams
Sourcepub fn builder(email: String) -> EnableOptionsForSubAccountParamsBuilder
pub fn builder(email: String) -> EnableOptionsForSubAccountParamsBuilder
Create a builder for [enable_options_for_sub_account].
Required parameters:
email— Sub-account email
Trait Implementations§
Source§impl Clone for EnableOptionsForSubAccountParams
impl Clone for EnableOptionsForSubAccountParams
Source§fn clone(&self) -> EnableOptionsForSubAccountParams
fn clone(&self) -> EnableOptionsForSubAccountParams
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 moreAuto Trait Implementations§
impl Freeze for EnableOptionsForSubAccountParams
impl RefUnwindSafe for EnableOptionsForSubAccountParams
impl Send for EnableOptionsForSubAccountParams
impl Sync for EnableOptionsForSubAccountParams
impl Unpin for EnableOptionsForSubAccountParams
impl UnsafeUnpin for EnableOptionsForSubAccountParams
impl UnwindSafe for EnableOptionsForSubAccountParams
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