[][src]Struct tarkov::trading::LoyaltyLevel

pub struct LoyaltyLevel {
    pub min_level: u64,
    pub min_sales_sum: u64,
    pub min_standing: f64,
}

Trader loyalty level

Fields

min_level: u64

Minimum level

min_sales_sum: u64

Minimum sales amount

min_standing: f64

Minimum standing

Trait Implementations

impl Clone for LoyaltyLevel[src]

impl Debug for LoyaltyLevel[src]

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

impl PartialEq<LoyaltyLevel> for LoyaltyLevel[src]

impl Serialize for LoyaltyLevel[src]

impl StructuralPartialEq for LoyaltyLevel[src]

Auto Trait Implementations

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: for<'de> 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>,