[][src]Struct tarkov::constant::BossSpawn

pub struct BossSpawn {
    pub name: String,
    pub chance: u64,
    pub zone: String,
    pub player: bool,
    pub difficulty: BotDifficulty,
    pub escort_type: String,
    pub escort_difficulty: BotDifficulty,
    pub escort_amount: String,
    pub time: i64,
}

Boss bots

Fields

name: String

Boss name

chance: u64

Boss spawn chance

zone: String

Boss spawn zone

player: bool

?

difficulty: BotDifficulty

Boss difficulty

escort_type: String

Boss escort type

escort_difficulty: BotDifficulty

Boss escort difficulty

escort_amount: String

Number of boss escorts

time: i64

?

Trait Implementations

impl Clone for BossSpawn[src]

impl Debug for BossSpawn[src]

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

impl PartialEq<BossSpawn> for BossSpawn[src]

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