pub struct AcceptQuoteParams {
pub quote_id: String,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [accept_quote] operation.
This struct holds all of the inputs you can pass when calling
accept_quote.
Fields§
§quote_id: StringThe quote_id parameter.
This field is **required.
recv_window: Option<i64>The value cannot be greater than 60000
This field is **optional.
Implementations§
Source§impl AcceptQuoteParams
impl AcceptQuoteParams
Sourcepub fn builder(quote_id: String) -> AcceptQuoteParamsBuilder
pub fn builder(quote_id: String) -> AcceptQuoteParamsBuilder
Create a builder for [accept_quote].
Required parameters:
quote_id— String
Trait Implementations§
Source§impl Clone for AcceptQuoteParams
impl Clone for AcceptQuoteParams
Source§fn clone(&self) -> AcceptQuoteParams
fn clone(&self) -> AcceptQuoteParams
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 AcceptQuoteParams
impl RefUnwindSafe for AcceptQuoteParams
impl Send for AcceptQuoteParams
impl Sync for AcceptQuoteParams
impl Unpin for AcceptQuoteParams
impl UnsafeUnpin for AcceptQuoteParams
impl UnwindSafe for AcceptQuoteParams
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