pub struct GetOrderDetailOptions { /* private fields */ }Expand description
Options for get order detail request
Implementations§
Source§impl GetOrderDetailOptions
impl GetOrderDetailOptions
Sourcepub fn is_attached(self) -> Self
pub fn is_attached(self) -> Self
Indicate that the provided order_id is an attached sub-order ID.
When set, the server looks up the order detail using the attached order
ID instead of treating order_id as a regular order ID.
Trait Implementations§
Source§impl Clone for GetOrderDetailOptions
impl Clone for GetOrderDetailOptions
Source§fn clone(&self) -> GetOrderDetailOptions
fn clone(&self) -> GetOrderDetailOptions
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 GetOrderDetailOptions
impl Debug for GetOrderDetailOptions
Source§impl<'a> From<&'a str> for GetOrderDetailOptions
impl<'a> From<&'a str> for GetOrderDetailOptions
Source§impl From<String> for GetOrderDetailOptions
impl From<String> for GetOrderDetailOptions
Auto Trait Implementations§
impl Freeze for GetOrderDetailOptions
impl RefUnwindSafe for GetOrderDetailOptions
impl Send for GetOrderDetailOptions
impl Sync for GetOrderDetailOptions
impl Unpin for GetOrderDetailOptions
impl UnsafeUnpin for GetOrderDetailOptions
impl UnwindSafe for GetOrderDetailOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more