[][src]Struct luno::orders::LimitOrder

pub struct LimitOrder {
    pub pair: String,
    pub order_type: LimitOrderType,
    pub volume: String,
    pub price: String,
    pub stop_price: String,
    pub stop_direction: String,
    pub base_account_id: String,
    pub counter_account_id: String,
    pub post_only: bool,
}

Represents a limit order made on the exchange.

Fields

pair: Stringorder_type: LimitOrderTypevolume: Stringprice: Stringstop_price: Stringstop_direction: Stringbase_account_id: Stringcounter_account_id: Stringpost_only: bool

Trait Implementations

impl Debug for LimitOrder[src]

impl Serialize for LimitOrder[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.