#[repr(u8)]pub enum AlgoOrderStatus {
Working = 1,
Rejected = 2,
Paused = 63,
Stopped = 127,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AlgoOrderStatus
impl Clone for AlgoOrderStatus
Source§fn clone(&self) -> AlgoOrderStatus
fn clone(&self) -> AlgoOrderStatus
Returns a duplicate 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 AlgoOrderStatus
impl Debug for AlgoOrderStatus
Source§impl<'de> Deserialize<'de> for AlgoOrderStatus
impl<'de> Deserialize<'de> for AlgoOrderStatus
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AlgoOrderStatus
impl Display for AlgoOrderStatus
Source§impl FromStr for AlgoOrderStatus
impl FromStr for AlgoOrderStatus
Source§impl JsonSchema for AlgoOrderStatus
impl JsonSchema for AlgoOrderStatus
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for AlgoOrderStatus
impl PartialEq for AlgoOrderStatus
Source§impl Serialize for AlgoOrderStatus
impl Serialize for AlgoOrderStatus
impl Copy for AlgoOrderStatus
impl Eq for AlgoOrderStatus
impl StructuralPartialEq for AlgoOrderStatus
Auto Trait Implementations§
impl Freeze for AlgoOrderStatus
impl RefUnwindSafe for AlgoOrderStatus
impl Send for AlgoOrderStatus
impl Sync for AlgoOrderStatus
impl Unpin for AlgoOrderStatus
impl UnwindSafe for AlgoOrderStatus
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