pub struct MarketOrder {
pub duration: i32,
pub is_buy_order: bool,
pub issued: DateTime<Utc>,
pub location_id: i64,
pub min_volume: i32,
pub order_id: i64,
pub price: f32,
pub range: String,
pub system_id: i32,
pub type_id: i32,
pub volume_remain: f32,
pub volume_total: f32,
}Fields§
§duration: i32§is_buy_order: bool§issued: DateTime<Utc>§location_id: i64§min_volume: i32§order_id: i64§price: f32§range: String§system_id: i32§type_id: i32§volume_remain: f32§volume_total: f32Trait Implementations§
Source§impl Debug for MarketOrder
impl Debug for MarketOrder
Source§impl<'de> Deserialize<'de> for MarketOrder
impl<'de> Deserialize<'de> for MarketOrder
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
Auto Trait Implementations§
impl Freeze for MarketOrder
impl RefUnwindSafe for MarketOrder
impl Send for MarketOrder
impl Sync for MarketOrder
impl Unpin for MarketOrder
impl UnwindSafe for MarketOrder
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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