[][src]Struct tarkov::constant::BotLocationModifier

pub struct BotLocationModifier {
    pub accuracy_speed: u64,
    pub scattering: u64,
    pub gain_sight: u64,
    pub marksman_accuracy_coefficient: u64,
    pub visible_distance: u64,
}

Location bot stat modifier

Fields

accuracy_speed: u64

Bot accuracy speed modifier

scattering: u64

Bot scattering modifier

gain_sight: u64

Bot gain sight modifier

marksman_accuracy_coefficient: u64

Bot marksmen accuracy modifier

visible_distance: u64

Bot visible distance modifier

Trait Implementations

impl Clone for BotLocationModifier[src]

impl Debug for BotLocationModifier[src]

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

impl PartialEq<BotLocationModifier> for BotLocationModifier[src]

impl Serialize for BotLocationModifier[src]

impl StructuralPartialEq for BotLocationModifier[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: 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>,