pub struct Networth {
pub total: f64,
pub items: Vec<ItemValuation>,
pub unpriced: Vec<String>,
}Expand description
An itemized networth estimate.
Fields§
§total: f64Summed value of every priced stack.
items: Vec<ItemValuation>Per-stack valuations that were successfully priced.
unpriced: Vec<String>Item ids that had no price in the PriceBook.
Trait Implementations§
impl StructuralPartialEq for Networth
Auto Trait Implementations§
impl Freeze for Networth
impl RefUnwindSafe for Networth
impl Send for Networth
impl Sync for Networth
impl Unpin for Networth
impl UnsafeUnpin for Networth
impl UnwindSafe for Networth
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