[][src]Struct tarkov::trading::Trader

pub struct Trader {
    pub id: String,
    pub working: bool,
    pub customization_seller: bool,
    pub name: String,
    pub surname: String,
    pub nickname: String,
    pub location: String,
    pub avatar: String,
    pub balance_rub: u64,
    pub balance_dol: u64,
    pub balance_eur: u64,
    pub display: bool,
    pub discount: i64,
    pub discount_end: i64,
    pub buyer_up: bool,
    pub currency: Currency,
    pub supply_next_time: u64,
    pub repair: Repair,
    pub insurance: Insurance,
    pub grid_height: u64,
    pub loyalty: Loyalty,
    pub sell_category: Vec<Value>,
}

Trader info

Fields

id: String

Trader ID

working: bool

Trader is working

customization_seller: bool

?

name: String

Trader name

surname: String

Trader surname

nickname: String

Trader nickname

location: String

Trader location

avatar: String

Trader avatar

balance_rub: u64

Trader rouble balance

balance_dol: u64

Trader dollar balance

balance_eur: u64

Trader euro balance

display: bool

?

discount: i64

Trader discount

discount_end: i64

Trader discount expiry

buyer_up: bool

?

currency: Currency

Trader currency

supply_next_time: u64

Resupply time

repair: Repair

Trader repair offer

insurance: Insurance

Trader insurance offer

grid_height: u64

Trader grid height

loyalty: Loyalty

Trader loyalty

sell_category: Vec<Value>

Unknown type

Trait Implementations

impl Clone for Trader[src]

impl Debug for Trader[src]

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

impl PartialEq<Trader> for Trader[src]

impl StructuralPartialEq for Trader[src]

Auto Trait Implementations

impl RefUnwindSafe for Trader

impl Send for Trader

impl Sync for Trader

impl Unpin for Trader

impl UnwindSafe for Trader

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>,