pub struct Outfitting {
pub timestamp: DateTime<Utc>,
pub event: String,
pub market_id: u64,
pub station_name: String,
pub star_system: String,
pub horizons: bool,
pub items: Vec<OutfittingEntry>,
}
Fields§
§timestamp: DateTime<Utc>
§event: String
§market_id: u64
§station_name: String
§star_system: String
§horizons: bool
§items: Vec<OutfittingEntry>
Trait Implementations§
Source§impl Clone for Outfitting
impl Clone for Outfitting
Source§fn clone(&self) -> Outfitting
fn clone(&self) -> Outfitting
Returns a copy of the value. Read more
1.0.0 · 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 Outfitting
impl Debug for Outfitting
Source§impl<'de> Deserialize<'de> for Outfitting
impl<'de> Deserialize<'de> for Outfitting
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 PartialEq for Outfitting
impl PartialEq for Outfitting
Source§impl Serialize for Outfitting
impl Serialize for Outfitting
impl StructuralPartialEq for Outfitting
Auto Trait Implementations§
impl Freeze for Outfitting
impl RefUnwindSafe for Outfitting
impl Send for Outfitting
impl Sync for Outfitting
impl Unpin for Outfitting
impl UnwindSafe for Outfitting
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