[][src]Struct tarkov::profile::Ragfair

pub struct Ragfair {
    pub rating: f64,
    pub is_rating_growing: bool,
    pub offers: Vec<Offer>,
}

Flea market profile

Fields

rating: f64

Market rating

is_rating_growing: bool

Market rating is growing

offers: Vec<Offer>

Active offers (items for sale)

Trait Implementations

impl Clone for Ragfair[src]

impl Debug for Ragfair[src]

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

impl PartialEq<Ragfair> for Ragfair[src]

impl Serialize for Ragfair[src]

impl StructuralPartialEq for Ragfair[src]

Auto Trait Implementations

impl RefUnwindSafe for Ragfair

impl Send for Ragfair

impl Sync for Ragfair

impl Unpin for Ragfair

impl UnwindSafe for Ragfair

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