Struct aws_sdk_outposts::model::OrderSummary
source · [−]#[non_exhaustive]pub struct OrderSummary { /* private fields */ }
Expand description
A summary of line items in your order.
Implementations
sourceimpl OrderSummary
impl OrderSummary
sourcepub fn outpost_id(&self) -> Option<&str>
pub fn outpost_id(&self) -> Option<&str>
The ID of the Outpost.
sourcepub fn order_type(&self) -> Option<&OrderType>
pub fn order_type(&self) -> Option<&OrderType>
The type of order.
sourcepub fn status(&self) -> Option<&OrderStatus>
pub fn status(&self) -> Option<&OrderStatus>
The status of the order.
-
PREPARING
- Order is received and is being prepared. -
IN_PROGRESS
- Order is either being built, shipped, or installed. For more information, see theLineItem
status. -
COMPLETED
- Order is complete. -
CANCELLED
- Order is cancelled. -
ERROR
- Customer should contact support.
The following statuses are deprecated: RECEIVED
, PENDING
, PROCESSING
, INSTALLING
, and FULFILLED
.
sourcepub fn line_item_counts_by_status(
&self
) -> Option<&HashMap<LineItemStatus, i32>>
pub fn line_item_counts_by_status(
&self
) -> Option<&HashMap<LineItemStatus, i32>>
The status of all line items in the order.
sourcepub fn order_submission_date(&self) -> Option<&DateTime>
pub fn order_submission_date(&self) -> Option<&DateTime>
Submission date for the order.
sourcepub fn order_fulfilled_date(&self) -> Option<&DateTime>
pub fn order_fulfilled_date(&self) -> Option<&DateTime>
Fulfilment date for the order.
sourceimpl OrderSummary
impl OrderSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OrderSummary
.
Trait Implementations
sourceimpl Clone for OrderSummary
impl Clone for OrderSummary
sourcefn clone(&self) -> OrderSummary
fn clone(&self) -> OrderSummary
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for OrderSummary
impl Debug for OrderSummary
sourceimpl PartialEq<OrderSummary> for OrderSummary
impl PartialEq<OrderSummary> for OrderSummary
sourcefn eq(&self, other: &OrderSummary) -> bool
fn eq(&self, other: &OrderSummary) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &OrderSummary) -> bool
fn ne(&self, other: &OrderSummary) -> bool
This method tests for !=
.
impl StructuralPartialEq for OrderSummary
Auto Trait Implementations
impl RefUnwindSafe for OrderSummary
impl Send for OrderSummary
impl Sync for OrderSummary
impl Unpin for OrderSummary
impl UnwindSafe for OrderSummary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more