[][src]Struct tarkov::constant::HealthEffects

pub struct HealthEffects {
    pub common: Health,
    pub head: Health,
    pub arm_left: Health,
    pub arm_right: Health,
    pub chest: Health,
    pub tummy: Health,
    pub leg_left: Health,
    pub leg_right: Health,
    pub energy: Health,
    pub hydration: Health,
}

Health effects on player

Fields

common: Health

Body effects

head: Health

Head effects

arm_left: Health

Left arm effects

arm_right: Health

Right arm effects

chest: Health

Chest effects

tummy: Health

Stomach effects

leg_left: Health

Left leg effects

leg_right: Health

Right leg effects

energy: Health

Energy effects

hydration: Health

Hydration effects

Trait Implementations

impl Clone for HealthEffects[src]

impl Debug for HealthEffects[src]

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

impl PartialEq<HealthEffects> for HealthEffects[src]

impl StructuralPartialEq for HealthEffects[src]

Auto Trait Implementations

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