pub struct CharacterMarketOrder {Show 15 fields
pub duration: i32,
pub escrow: Option<f32>,
pub is_buy_order: Option<bool>,
pub is_corporation: bool,
pub issued: DateTime<Utc>,
pub location_id: i64,
pub min_volume: Option<i32>,
pub order_id: i64,
pub price: f32,
pub range: String,
pub region_id: i32,
pub state: Option<String>,
pub type_id: i32,
pub volume_remain: f32,
pub volume_total: f32,
}Fields§
§duration: i32§escrow: Option<f32>§is_buy_order: Option<bool>§is_corporation: bool§issued: DateTime<Utc>§location_id: i64§min_volume: Option<i32>§order_id: i64§price: f32§range: String§region_id: i32§state: Option<String>§type_id: i32§volume_remain: f32§volume_total: f32Trait Implementations§
Source§impl Debug for CharacterMarketOrder
impl Debug for CharacterMarketOrder
Source§impl<'de> Deserialize<'de> for CharacterMarketOrder
impl<'de> Deserialize<'de> for CharacterMarketOrder
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 CharacterMarketOrder
impl RefUnwindSafe for CharacterMarketOrder
impl Send for CharacterMarketOrder
impl Sync for CharacterMarketOrder
impl Unpin for CharacterMarketOrder
impl UnwindSafe for CharacterMarketOrder
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