pub struct EsiMiningEntry {
pub date: NaiveDate,
pub solar_system_id: i32,
pub type_id: i32,
pub quantity: i64,
}Expand description
A personal mining ledger entry.
Fields§
§date: NaiveDate§solar_system_id: i32§type_id: i32§quantity: i64Trait Implementations§
Source§impl Clone for EsiMiningEntry
impl Clone for EsiMiningEntry
Source§fn clone(&self) -> EsiMiningEntry
fn clone(&self) -> EsiMiningEntry
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 EsiMiningEntry
impl Debug for EsiMiningEntry
Source§impl<'de> Deserialize<'de> for EsiMiningEntry
impl<'de> Deserialize<'de> for EsiMiningEntry
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 EsiMiningEntry
impl RefUnwindSafe for EsiMiningEntry
impl Send for EsiMiningEntry
impl Sync for EsiMiningEntry
impl Unpin for EsiMiningEntry
impl UnsafeUnpin for EsiMiningEntry
impl UnwindSafe for EsiMiningEntry
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