[][src]Struct tarkov::profile::Bonus

pub struct Bonus {
    pub bonus_type: String,
    pub template_id: Option<String>,
    pub value: Option<i64>,
    pub passive: Option<bool>,
    pub visible: Option<bool>,
    pub production: Option<bool>,
    pub filter: Option<Vec<String>>,
    pub id: Option<String>,
    pub icon: Option<String>,
}

Bonus?

Fields

bonus_type: String

?

template_id: Option<String>

?

value: Option<i64>

?

passive: Option<bool>

?

visible: Option<bool>

?

production: Option<bool>

?

filter: Option<Vec<String>>

?

id: Option<String>

?

icon: Option<String>

?

Trait Implementations

impl Clone for Bonus[src]

impl Debug for Bonus[src]

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

impl PartialEq<Bonus> for Bonus[src]

impl Serialize for Bonus[src]

impl StructuralPartialEq for Bonus[src]

Auto Trait Implementations

impl RefUnwindSafe for Bonus

impl Send for Bonus

impl Sync for Bonus

impl Unpin for Bonus

impl UnwindSafe for Bonus

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