pub enum OrderStatus {
Show 18 variants
Unknown,
NotReported,
ReplacedNotReported,
ProtectedNotReported,
VarietiesNotReported,
Filled,
WaitToNew,
New,
WaitToReplace,
PendingReplace,
Replaced,
PartialFilled,
WaitToCancel,
PendingCancel,
Rejected,
Canceled,
Expired,
PartialWithdrawal,
}
Expand description
Order status
Variants§
Unknown
Unknown
NotReported
Not reported
ReplacedNotReported
Not reported (Replaced Order)
ProtectedNotReported
Not reported (Protected Order)
VarietiesNotReported
Not reported (Conditional Order)
Filled
Filled
WaitToNew
Wait To New
New
New
WaitToReplace
Wait To Replace
PendingReplace
Pending Replace
Replaced
Replaced
PartialFilled
Partial Filled
WaitToCancel
Wait To Cancel
PendingCancel
Pending Cancel
Rejected
Rejected
Canceled
Canceled
Expired
Expired
PartialWithdrawal
Partial Withdrawal
Trait Implementations§
source§impl Clone for OrderStatus
impl Clone for OrderStatus
source§fn clone(&self) -> OrderStatus
fn clone(&self) -> OrderStatus
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for OrderStatus
impl Debug for OrderStatus
source§impl Default for OrderStatus
impl Default for OrderStatus
source§impl<'de> Deserialize<'de> for OrderStatus
impl<'de> Deserialize<'de> for OrderStatus
source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for OrderStatus
impl Display for OrderStatus
source§impl FromStr for OrderStatus
impl FromStr for OrderStatus
source§impl Hash for OrderStatus
impl Hash for OrderStatus
source§impl PartialEq for OrderStatus
impl PartialEq for OrderStatus
source§impl Serialize for OrderStatus
impl Serialize for OrderStatus
source§impl TryFrom<&str> for OrderStatus
impl TryFrom<&str> for OrderStatus
impl Copy for OrderStatus
impl Eq for OrderStatus
impl StructuralPartialEq for OrderStatus
Auto Trait Implementations§
impl Freeze for OrderStatus
impl RefUnwindSafe for OrderStatus
impl Send for OrderStatus
impl Sync for OrderStatus
impl Unpin for OrderStatus
impl UnwindSafe for OrderStatus
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more