pub struct EsiCharacterOrder {Show 15 fields
pub order_id: i64,
pub type_id: i32,
pub region_id: i32,
pub location_id: i64,
pub range: String,
pub is_buy_order: bool,
pub price: Isk,
pub volume_total: i32,
pub volume_remain: i32,
pub issued: DateTime<Utc>,
pub min_volume: i32,
pub duration: i32,
pub state: Option<String>,
pub escrow: Option<Isk>,
pub is_corporation: Option<bool>,
}Expand description
A character market order.
Fields§
§order_id: i64§type_id: i32§region_id: i32§location_id: i64§range: String§is_buy_order: bool§price: Isk§volume_total: i32§volume_remain: i32§issued: DateTime<Utc>§min_volume: i32§duration: i32§state: Option<String>§escrow: Option<Isk>§is_corporation: Option<bool>Trait Implementations§
Source§impl Clone for EsiCharacterOrder
impl Clone for EsiCharacterOrder
Source§fn clone(&self) -> EsiCharacterOrder
fn clone(&self) -> EsiCharacterOrder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EsiCharacterOrder
impl Debug for EsiCharacterOrder
Source§impl<'de> Deserialize<'de> for EsiCharacterOrder
impl<'de> Deserialize<'de> for EsiCharacterOrder
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 EsiCharacterOrder
impl RefUnwindSafe for EsiCharacterOrder
impl Send for EsiCharacterOrder
impl Sync for EsiCharacterOrder
impl Unpin for EsiCharacterOrder
impl UnsafeUnpin for EsiCharacterOrder
impl UnwindSafe for EsiCharacterOrder
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