[][src]Struct tarkov::constant::Exit

pub struct Exit {
    pub name: String,
    pub entry_points: String,
    pub chance: u64,
    pub min_time: u64,
    pub max_time: u64,
    pub players_count: u64,
    pub exfiltration_time: u64,
    pub passage_requirement: Option<String>,
    pub exfiltration_type: Option<String>,
    pub required_slot: Option<String>,
    pub count: Option<u64>,
    pub id: String,
    pub requirement_tip: Option<String>,
}

Extraction point

Fields

name: String

Extraction name

entry_points: String

?

chance: u64

Extraction availability chance

min_time: u64

Extraction minimum availability time

max_time: u64

Extraction maximum availability time

players_count: u64

?

exfiltration_time: u64

?

passage_requirement: Option<String>

?

exfiltration_type: Option<String>

?

required_slot: Option<String>

?

count: Option<u64>

?

id: String

Extraction ID

requirement_tip: Option<String>

?

Trait Implementations

impl Clone for Exit[src]

impl Debug for Exit[src]

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

impl PartialEq<Exit> for Exit[src]

impl StructuralPartialEq for Exit[src]

Auto Trait Implementations

impl RefUnwindSafe for Exit

impl Send for Exit

impl Sync for Exit

impl Unpin for Exit

impl UnwindSafe for Exit

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