pub struct Shipyard {
pub timestamp: DateTime<Utc>,
pub event: String,
pub market_id: u64,
pub station_name: String,
pub star_system: String,
pub horizons: bool,
pub allow_cobra_mk_iv: bool,
pub price_list: Vec<ShipyardEntry>,
}
Fields§
§timestamp: DateTime<Utc>
§event: String
§market_id: u64
§station_name: String
§star_system: String
§horizons: bool
§allow_cobra_mk_iv: bool
§price_list: Vec<ShipyardEntry>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Shipyard
impl<'de> Deserialize<'de> for Shipyard
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
impl StructuralPartialEq for Shipyard
Auto Trait Implementations§
impl Freeze for Shipyard
impl RefUnwindSafe for Shipyard
impl Send for Shipyard
impl Sync for Shipyard
impl Unpin for Shipyard
impl UnwindSafe for Shipyard
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