[][src]Struct tarkov::trading::Loyalty

pub struct Loyalty {
    pub current_level: u64,
    pub current_standing: f64,
    pub current_sales_sum: u64,
    pub loyalty_levels: HashMap<String, LoyaltyLevel>,
}

Trader loyalty

Fields

current_level: u64

Current loyalty level

current_standing: f64

Current loyalty standing

current_sales_sum: u64

Amount spent on trader

loyalty_levels: HashMap<String, LoyaltyLevel>

All loyalty levels

Trait Implementations

impl Clone for Loyalty[src]

impl Debug for Loyalty[src]

impl<'de> Deserialize<'de> for Loyalty[src]

impl PartialEq<Loyalty> for Loyalty[src]

impl StructuralPartialEq for Loyalty[src]

Auto Trait Implementations

impl RefUnwindSafe for Loyalty

impl Send for Loyalty

impl Sync for Loyalty

impl Unpin for Loyalty

impl UnwindSafe for Loyalty

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,