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