pub struct AlgoOrder<A: Algo> {
pub algo_name: String,
pub algo_order_id: OrderId,
pub parent_order_id: Option<OrderId>,
pub trader: UserId,
pub account: AccountId,
pub create_time: DateTime<Utc>,
pub display_symbols: Option<Vec<String>>,
pub last_error: Option<String>,
pub last_error_time: Option<DateTime<Utc>>,
pub params: A::Params,
pub status: A::Status,
pub state: AlgoState,
}Fields§
§algo_name: String§algo_order_id: OrderId§parent_order_id: Option<OrderId>§trader: UserId§account: AccountId§create_time: DateTime<Utc>§display_symbols: Option<Vec<String>>§last_error: Option<String>§last_error_time: Option<DateTime<Utc>>§params: A::Params§status: A::Status§state: AlgoStateTrait Implementations§
Source§impl<'de, A: Algo> Deserialize<'de> for AlgoOrder<A>
impl<'de, A: Algo> Deserialize<'de> for AlgoOrder<A>
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<A: Algo + JsonSchema> JsonSchema for AlgoOrder<A>
impl<A: Algo + JsonSchema> JsonSchema for AlgoOrder<A>
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &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 moreAuto Trait Implementations§
impl<A> Freeze for AlgoOrder<A>
impl<A> RefUnwindSafe for AlgoOrder<A>
impl<A> Send for AlgoOrder<A>
impl<A> Sync for AlgoOrder<A>
impl<A> Unpin for AlgoOrder<A>
impl<A> UnwindSafe for AlgoOrder<A>
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