[][src]Struct tarkov::inventory::Upd

pub struct Upd {
    pub stack_objects_count: Option<u64>,
    pub spawned_in_session: Option<bool>,
    pub med_kit: Option<UpdMedkit>,
    pub repairable: Option<UpdRepairable>,
    pub light: Option<UpdLight>,
    pub unlimited_count: Option<bool>,
    pub buy_restriction_max: Option<u64>,
    pub buy_restriction_current: Option<u64>,
    pub key: Option<UpdKey>,
}

Item options

Fields

stack_objects_count: Option<u64>

Item stack count

spawned_in_session: Option<bool>

Item spawned in session

med_kit: Option<UpdMedkit>

Item is medkit

repairable: Option<UpdRepairable>

Item is repairable

light: Option<UpdLight>

Item has a light attachment

unlimited_count: Option<bool>

Unlimited stack

buy_restriction_max: Option<u64>

?

buy_restriction_current: Option<u64>

?

key: Option<UpdKey>

Key info

Trait Implementations

impl Clone for Upd[src]

impl Debug for Upd[src]

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

impl PartialEq<Upd> for Upd[src]

impl StructuralPartialEq for Upd[src]

Auto Trait Implementations

impl RefUnwindSafe for Upd

impl Send for Upd

impl Sync for Upd

impl Unpin for Upd

impl UnwindSafe for Upd

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