[][src]Enum ya_client_model::payment::document_status::DocumentStatus

pub enum DocumentStatus {
    Issued,
    Received,
    Accepted,
    Rejected,
    Failed,
    Settled,
    Cancelled,
}

Variants

Issued
Received
Accepted
Rejected
Failed
Settled
Cancelled

Trait Implementations

impl Clone for DocumentStatus[src]

impl Copy for DocumentStatus[src]

impl Debug for DocumentStatus[src]

impl<'de> Deserialize<'de> for DocumentStatus[src]

impl Display for DocumentStatus[src]

impl Eq for DocumentStatus[src]

impl From<DocumentStatus> for String[src]

impl Hash for DocumentStatus[src]

impl Ord for DocumentStatus[src]

impl PartialEq<DocumentStatus> for DocumentStatus[src]

impl PartialOrd<DocumentStatus> for DocumentStatus[src]

impl Serialize for DocumentStatus[src]

impl StructuralEq for DocumentStatus[src]

impl StructuralPartialEq for DocumentStatus[src]

impl TryFrom<String> for DocumentStatus[src]

type Error = InvalidOption

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.