pub struct EditIpForSpecialKeyParams {
pub ip: String,
pub symbol: Option<String>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [edit_ip_for_special_key] operation.
This struct holds all of the inputs you can pass when calling
edit_ip_for_special_key.
Fields§
§ip: StringCan be added in batches, separated by commas. Max 30 for an API key
This field is **required.
symbol: Option<String>isolated margin pair
This field is **optional.
recv_window: Option<i64>No more than 60000
This field is **optional.
Implementations§
Source§impl EditIpForSpecialKeyParams
impl EditIpForSpecialKeyParams
Sourcepub fn builder(ip: String) -> EditIpForSpecialKeyParamsBuilder
pub fn builder(ip: String) -> EditIpForSpecialKeyParamsBuilder
Create a builder for [edit_ip_for_special_key].
Required parameters:
ip— Can be added in batches, separated by commas. Max 30 for an API key
Trait Implementations§
Source§impl Clone for EditIpForSpecialKeyParams
impl Clone for EditIpForSpecialKeyParams
Source§fn clone(&self) -> EditIpForSpecialKeyParams
fn clone(&self) -> EditIpForSpecialKeyParams
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 EditIpForSpecialKeyParams
impl RefUnwindSafe for EditIpForSpecialKeyParams
impl Send for EditIpForSpecialKeyParams
impl Sync for EditIpForSpecialKeyParams
impl Unpin for EditIpForSpecialKeyParams
impl UnsafeUnpin for EditIpForSpecialKeyParams
impl UnwindSafe for EditIpForSpecialKeyParams
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