pub struct DetailedNetworth {
pub total: f64,
pub items: Vec<DetailedItemValuation>,
pub unpriced: Vec<String>,
}Expand description
An itemized networth estimate including modifier value.
Fields§
§total: f64§items: Vec<DetailedItemValuation>§unpriced: Vec<String>Item ids that had no base price in the PriceBook.
Trait Implementations§
Source§impl Clone for DetailedNetworth
impl Clone for DetailedNetworth
Source§fn clone(&self) -> DetailedNetworth
fn clone(&self) -> DetailedNetworth
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 DetailedNetworth
impl Debug for DetailedNetworth
Source§impl Default for DetailedNetworth
impl Default for DetailedNetworth
Source§fn default() -> DetailedNetworth
fn default() -> DetailedNetworth
Returns the “default value” for a type. Read more
Source§impl PartialEq for DetailedNetworth
impl PartialEq for DetailedNetworth
Source§impl Serialize for DetailedNetworth
impl Serialize for DetailedNetworth
impl StructuralPartialEq for DetailedNetworth
Auto Trait Implementations§
impl Freeze for DetailedNetworth
impl RefUnwindSafe for DetailedNetworth
impl Send for DetailedNetworth
impl Sync for DetailedNetworth
impl Unpin for DetailedNetworth
impl UnsafeUnpin for DetailedNetworth
impl UnwindSafe for DetailedNetworth
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