Enum bestbuy::order::OrderLineState [] [src]

pub enum OrderLineState {
    Staging,
    WaitingAcceptance,
    WaitingDebit,
    WaitingDebitPayment,
    Shipping,
    ToCollect,
    Received,
    Closed,
    Refused,
    Canceled,
    IncidentOpen,
    Refunded,
}

Variants

Trait Implementations

impl Debug for OrderLineState
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for OrderLineState
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for OrderLineState
[src]

impl ToString for OrderLineState
[src]

[src]

Converts the given value to a String. Read more

Auto Trait Implementations