[][src]Struct tarkov::profile::Info

pub struct Info {
    pub nickname: String,
    pub lower_nickname: String,
    pub side: Side,
    pub voice: String,
    pub level: u64,
    pub experience: u64,
    pub registration_date: u64,
    pub game_version: String,
    pub account_type: u64,
    pub member_category: String,
    pub locked_move_commands: bool,
    pub savage_lock_time: u64,
    pub last_time_played_as_savage: u64,
    pub settings: Settings,
    pub need_wipe: bool,
    pub global_wipe: bool,
    pub nickname_change_date: u64,
    pub bans: Value,
}

Profile info

Fields

nickname: String

Profile nickname

lower_nickname: String

Profile lowercase nickname

side: Side

Profile side

voice: String

Profile voice

level: u64

Profile level

experience: u64

Profile experience points

registration_date: u64

Profile registration timestamp

game_version: String

Game version

account_type: u64

Profile type

member_category: String

?

locked_move_commands: bool

?

savage_lock_time: u64

SCAV cooldown timestamp

last_time_played_as_savage: u64

Last time played as SCAV

settings: Settings

Profile settings

need_wipe: bool

?

global_wipe: bool

?

nickname_change_date: u64

Profile nickname change timestamp

bans: Value

Unknown type

Trait Implementations

impl Clone for Info[src]

impl Debug for Info[src]

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

impl PartialEq<Info> for Info[src]

impl StructuralPartialEq for Info[src]

Auto Trait Implementations

impl RefUnwindSafe for Info

impl Send for Info

impl Sync for Info

impl Unpin for Info

impl UnwindSafe for Info

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