[][src]Enum alpaca_finance::AccountStatus

pub enum AccountStatus {
    AccountUpdated,
    Active,
    ApprovalPending,
    Onboarding,
    Rejected,
    SubmissionFailed,
    Submitted,
}

The status of the account

Most likely, the account status is ACTIVE unless there is any problem. The account status may get in ACCOUNT_UPDATED when personal information is being updated from the dashboard, in which case you may not be allowed trading for a short period of time until the change is approved.

Variants

AccountUpdated

The account information is being updated.

Active

The account is active for trading.

ApprovalPending

The final account approval is pending.

Onboarding

The account is onboarding.

Rejected

The account application has been rejected.

SubmissionFailed

The account application submission failed for some reason.

Submitted

The account application has been submitted for review.

Trait Implementations

impl Debug for AccountStatus[src]

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

impl PartialEq<AccountStatus> for AccountStatus[src]

impl StructuralPartialEq for AccountStatus[src]

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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,