[][src]Struct tarkov::trading::Repair

pub struct Repair {
    pub availability: bool,
    pub quality: String,
    pub excluded_id_list: Vec<String>,
    pub excluded_category: Vec<String>,
    pub currency: Option<String>,
    pub currency_coefficient: Option<u64>,
    pub price_rate: u64,
}

Trader's repair stats

Fields

availability: bool

Repair is available

quality: String

Repair quality

excluded_id_list: Vec<String>

Item IDs excluded from repair.

excluded_category: Vec<String>

Category IDs excluded from repair.

currency: Option<String>

Currency

currency_coefficient: Option<u64>

?

price_rate: u64

Repair price rate

Trait Implementations

impl Clone for Repair[src]

impl Debug for Repair[src]

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

impl PartialEq<Repair> for Repair[src]

impl StructuralPartialEq for Repair[src]

Auto Trait Implementations

impl RefUnwindSafe for Repair

impl Send for Repair

impl Sync for Repair

impl Unpin for Repair

impl UnwindSafe for Repair

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