[][src]Struct skyblock_rs::objects::bazaar::Order

pub struct Order {
    pub amount: i32,
    pub price_per_unit: f32,
    pub orders: i32,
}

Fields

amount: i32

Total amount of items in the orders involved

price_per_unit: f32

The price of the transaction for each item in the order

orders: i32

The number of orders associated with this price

Trait Implementations

impl Clone for Order[src]

impl Debug for Order[src]

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

impl PartialEq<Order> for Order[src]

impl Serialize for Order[src]

impl StructuralPartialEq for Order[src]

Auto Trait Implementations

impl RefUnwindSafe for Order

impl Send for Order

impl Sync for Order

impl Unpin for Order

impl UnwindSafe for Order

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.