[][src]Struct tarkov::profile::Profile

pub struct Profile {
    pub id: String,
    pub aid: u64,
    pub savage: Option<String>,
    pub info: Info,
    pub customization: Customization,
    pub health: Health,
    pub inventory: Inventory,
    pub skills: Skills,
    pub stats: Stats,
    pub encyclopedia: HashMap<String, bool>,
    pub condition_counters: ConditionCounters,
    pub backend_counters: HashMap<String, BackendCounter>,
    pub insured_items: Vec<InsuredItem>,
    pub hideout: Value,
    pub notes: Value,
    pub bonuses: Vec<Bonus>,
    pub quests: Vec<Quest>,
    pub ragfair: Ragfair,
    pub trader_standings: Value,
    pub wishlist: Vec<String>,
}

Profile

Fields

id: String

Profile ID

aid: u64

?

savage: Option<String>

SCAV profile ID

info: Info

Profile info

customization: Customization

Character customization

health: Health

Character health

inventory: Inventory

Inventory

skills: Skills

Skills

stats: Stats

Stats

encyclopedia: HashMap<String, bool>

Encyclopedia

condition_counters: ConditionCounters

?

backend_counters: HashMap<String, BackendCounter>

?

insured_items: Vec<InsuredItem>

Insured items

hideout: Value

Unimplemented type

notes: Value

Unknown type

bonuses: Vec<Bonus>

Bonuses?

quests: Vec<Quest>

Active quests

ragfair: Ragfair

Flea market stats

trader_standings: Value

Unknown type

wishlist: Vec<String>

Item wishlist

Trait Implementations

impl Clone for Profile[src]

impl Debug for Profile[src]

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

impl PartialEq<Profile> for Profile[src]

impl Serialize for Profile[src]

impl StructuralPartialEq for Profile[src]

Auto Trait Implementations

impl RefUnwindSafe for Profile

impl Send for Profile

impl Sync for Profile

impl Unpin for Profile

impl UnwindSafe for Profile

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