Enum stripe::NetworkStatus[][src]

pub enum NetworkStatus {
    ApprovedByNetwork,
    DeclinedByNetwork,
    NotSentToNetwork,
    ReversedAfterApproval,
    Other,
}

An enum representing the possible values of a ChargeOutcome's network_status field.

For more details see https://stripe.com/docs/api#charge_object-outcome-network_status

Variants

Trait Implementations

impl PartialEq for NetworkStatus
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for NetworkStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for NetworkStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for NetworkStatus
[src]

Auto Trait Implementations